diff options
Diffstat (limited to 'src/stat/mkfifo.c')
-rw-r--r-- | src/stat/mkfifo.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stat/mkfifo.c b/src/stat/mkfifo.c new file mode 100644 index 00000000..60efcf73 --- /dev/null +++ b/src/stat/mkfifo.c @@ -0,0 +1,6 @@ +#include <sys/stat.h> + +int mkfifo(const char *path, mode_t mode) +{ + return mknod(path, mode | S_IFIFO, 0); +} |