Files
ack/mach/minix/libsys/_mount.c
1991-09-03 14:22:32 +00:00

10 lines
206 B
C

#include <lib.h>
#define mount _mount
PUBLIC int mount(special, name, rwflag)
char *name, *special;
int rwflag;
{
return(_callm1(FS, MOUNT, _len(special), _len(name), rwflag, special, name, NIL_PTR));
}