#ifndef DUP2_H #define DUP2_H #include "syscalls.h" static int dup2(unsigned int oldfd, unsigned int newfd) { return syscall(DUP2, oldfd, newfd); } #endif