blob: d4023c63acefacd401554e4d1867454af4e3219d (
plain)
1
2
3
4
5
6
7
|
#include <sys/stat.h> // for mknodat, S_IFIFO, mkfifoat
#include <sys/types.h> // for mode_t
int mkfifoat(int fd, const char *path, mode_t mode)
{
return mknodat(fd, path, mode | S_IFIFO, 0);
}
|