ack/mach/minixST/libsys/_mount.c

11 lines
226 B
C
Raw Normal View History

#include <lib.h>
#define mount _mount
#include <unistd.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));
}