New installation mechanism, updated to minix 1.5

This commit is contained in:
ceriel
1991-09-03 15:11:18 +00:00
parent fc1615334c
commit 8818aec10e
122 changed files with 1717 additions and 59 deletions

View File

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