summaryrefslogtreecommitdiff
path: root/src/linux/chroot.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/chroot.c')
-rw-r--r--src/linux/chroot.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/chroot.c b/src/linux/chroot.c
new file mode 100644
index 0000000..0e69f14
--- /dev/null
+++ b/src/linux/chroot.c
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <unistd.h>
+#include "syscall.h"
+
+int chroot(const char *path)
+{
+ return syscall(SYS_chroot, path);
+}