1 2 3 4 5 6 7
#include <syscall.h> #include <unistd.h> int chroot(const char *path) { return syscall(chroot, path); }