home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / libsrc~1.z / libsrc~1 / mount.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  188 b   |  9 lines

  1. #include "lib.h"
  2.  
  3. PUBLIC int mount(special, name, rwflag)
  4. _CONST char *name, *special;
  5. int rwflag;
  6. {
  7.   return callm1(FS, MOUNT, len(special), len(name), rwflag, special, name, NIL_PTR);
  8. }
  9.