• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <unistd.h>
2 #include "syscall.h"
3 
dup(int fd)4 int dup(int fd)
5 {
6 	return syscall(SYS_dup, fd);
7 }
8