chiark
/
gitweb
/
~mdw
/
qmail
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Upstream qmail 1.03
[qmail]
/
fifo.c
1
#include <sys/types.h>
2
#include <sys/stat.h>
3
#include "hasmkffo.h"
4
#include "fifo.h"
5
6
#ifdef HASMKFIFO
7
int fifo_make(fn,mode) char *fn; int mode; { return mkfifo(fn,mode); }
8
#else
9
int fifo_make(fn,mode) char *fn; int mode; { return mknod(fn,S_IFIFO | mode,0); }
10
#endif