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 / mkfifo.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-28  |  210 b   |  11 lines

  1. #include "lib.h"
  2. #include <sys/stat.h>
  3.  
  4. PUBLIC int mkfifo(name, mode)
  5. _CONST char *name;
  6. int mode;
  7. {
  8.   mode = (mode & 0777) | S_IFIFO; 
  9.   return callm1(FS, MKNOD, len(name), mode, 0, name, NIL_PTR, NIL_PTR);
  10. }
  11.