diff options
Diffstat (limited to 'src/linux/chroot.c')
-rw-r--r-- | src/linux/chroot.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/chroot.c b/src/linux/chroot.c new file mode 100644 index 00000000..b5af62dc --- /dev/null +++ b/src/linux/chroot.c @@ -0,0 +1,8 @@ +#include <unistd.h> +#define SYSCALL_STANDALONE +#include "syscall.h" + +int chroot(const char *path) +{ + return syscall1(__NR_chroot, (long)path); +} |