ack/mach/minix/libsys/mount.c
1988-04-19 09:34:37 +00:00

9 lines
181 B
C

#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);
}