axle OS
x86_32 UNIX-like hobby OS
dup.h
1 #ifndef DUP_H
2 #define DUP_H
3 
4 int dup(int fd);
5 int dup2(int fd, int newfd);
6 
7 #endif