_chroot.c 148 B

123456789
  1. #include <lib.h>
  2. #define chroot _chroot
  3. #include <unistd.h>
  4. PUBLIC int chroot(name)
  5. _CONST char *name;
  6. {
  7. return(_callm3(FS, CHROOT, 0, name));
  8. }