#include "asm/unistd_64.h" // for __NR_pipe2 #include // for __syscall_2, syscall int pipe2(int fildes[2], int flag) { return syscall(pipe2, fildes, flag); }