1
0

chroot.c 110 B

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