blob: ce5aff838c0c299f7fc4c2bfed3e9db3838ed8bd [file] [log] [blame]
#include <sys/stat.h>
int mkfifo(const char* path, mode_t mode) {
return mknod(path, mode | S_IFIFO, 0);
}