9 lines
121 B
C
9 lines
121 B
C
#include <lib.h>
|
|
#define chroot _chroot
|
|
|
|
PUBLIC int chroot(name)
|
|
char *name;
|
|
{
|
|
return(_callm3(FS, CHROOT, 0, name));
|
|
}
|