ack/mach/minixST/libsys/_chroot.c

10 lines
148 B
C

#include <lib.h>
#define chroot _chroot
#include <unistd.h>
PUBLIC int chroot(name)
_CONST char *name;
{
return(_callm3(FS, CHROOT, 0, name));
}