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 ); }