b5af62dcf3b8fe7241baae47c83ea28f5ce43efb
[musl] / src / linux / chroot.c
1 #include <unistd.h>
2 #define SYSCALL_STANDALONE
3 #include "syscall.h"
4
5 int chroot(const char *path)
6 {
7         return syscall1(__NR_chroot, (long)path);
8 }