blob: 8778d279f31b722c9e0b6d89fa3320a85d30f0c9 [file] [log] [blame]
#include <unistd.h>
#include "syscall.h"
int dup(int fd) {
return syscall(SYS_dup, fd);
}