1 2 3 4 5 6 7 8 9 10 11
#ifndef DUP2_H #define DUP2_H #include "syscalls.h" static int dup2(unsigned int oldfd, unsigned int newfd) { return syscall(DUP2, oldfd, newfd); } #endif