Initial revision
This commit is contained in:
8
mach/minix/libsys/mount.c
Normal file
8
mach/minix/libsys/mount.c
Normal file
@@ -0,0 +1,8 @@
|
||||
#include "lib.h"
|
||||
|
||||
PUBLIC int mount(special, name, rwflag)
|
||||
char *name, *special;
|
||||
int rwflag;
|
||||
{
|
||||
return callm1(FS, MOUNT, len(special), len(name), rwflag, special, name, NIL_PTR);
|
||||
}
|
||||
Reference in New Issue
Block a user