diff options
Diffstat (limited to 'missing/dup2.c')
-rw-r--r-- | missing/dup2.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/missing/dup2.c b/missing/dup2.c deleted file mode 100644 index 01068348..00000000 --- a/missing/dup2.c +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef F_DUPFD -#include <fcntl.h> -#endif - -int -dup2 (old, new) -int old, new; -{ - (void) close(new); - - return fcntl(old, F_DUPFD, new); -} |