1 2 3 4 5 6 7 8
#include "asm/unistd_64.h" // for __NR_pipe2 #include <syscall.h> // for __syscall_2, syscall int pipe2(int fildes[2], int flag) { return syscall(pipe2, fildes, flag); }