chroot.c 97 B

12345678
  1. #include "lib.h"
  2. PUBLIC int chroot(name)
  3. char* name;
  4. {
  5. return callm3(FS, CHROOT, 0, name);
  6. }