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