s/qmail 4.2.29a
Next generation secure email transport
Loading...
Searching...
No Matches
fifo.c
Go to the documentation of this file.
1#include <sys/types.h>
2#include <sys/stat.h>
3#include "fifo.h"
4
5#ifdef HASMKFIFO
6int fifo_make(char *fn, int mode) { return mkfifo(fn,mode); }
7#else
8int fifo_make(char *fn, int mode) { return mknod(fn,S_IFIFO | mode,0); }
9#endif
int fifo_make(char *fn, int mode)
Definition: fifo.c:8
stralloc fn
Definition: qmail-qmaint.c:483