summaryrefslogtreecommitdiff
path: root/src/unistd/dup.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/unistd/dup.c')
-rw-r--r--src/unistd/dup.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/unistd/dup.c b/src/unistd/dup.c
new file mode 100644
index 00000000..b11cd715
--- /dev/null
+++ b/src/unistd/dup.c
@@ -0,0 +1,7 @@
+#include <unistd.h>
+#include "syscall.h"
+
+int dup(int fd)
+{
+ return syscall1(__NR_dup, fd);
+}