pipe.c 97 B

1234567
  1. #include <unistd.h>
  2. #include "syscall.h"
  3. int pipe(int fd[2])
  4. {
  5. return syscall(SYS_pipe, fd);
  6. }