1 2 3 4 5 6 7 8 9 10 11
#include <unistd.h> #include "syscall.h" int pipe(int fd[2]) { #ifdef SYS_pipe return syscall(SYS_pipe, fd); #else return syscall(SYS_pipe2, fd, 0); #endif }