• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include <sys/stat.h>
2 #include <unsupported_api.h>
3 
mkfifoat(int fd,const char * path,mode_t mode)4 int mkfifoat(int fd, const char *path, mode_t mode)
5 {
6 	unsupported_api(__FUNCTION__);
7 	return mknodat(fd, path, mode | S_IFIFO, 0);
8 }
9