dup.c 92 B

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