/* $Revision: 1.1.1.1 $ ** */ #include #include /* ** Call mknod(2) to make a fifo. */ int mkfifo(path, mode) char *path; int mode; { return mknod(path, S_IFIFO | mode, 0); }