runit

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

fifo.c (135B)


      1 /* Public domain. */
      2 
      3 #include <sys/types.h>
      4 #include <sys/stat.h>
      5 
      6 int fifo_make(const char *fn,int mode) { return mkfifo(fn,mode); }