mkfifoat.c 125 B

123456
  1. #include <sys/stat.h>
  2. int mkfifoat(int fd, const char *path, mode_t mode)
  3. {
  4. return mknodat(fd, path, mode | S_IFIFO, 0);
  5. }