summaryrefslogtreecommitdiff
path: root/src/shell.c
blob: d8320785cd0a2898992a023d0396787fa485937e (plain)
1
2
3
4
5
6
7
8
#define _GNU_SOURCE
#include <fcntl.h>
#include <unistd.h>

int shell_pipe_cloexec( int pipefd[ 2 ] )
{
	return pipe2( pipefd, O_CLOEXEC );
}