Minix1.5/lib/other/mount.c

Compare this file to the similar file:
Show the results in this format:

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