xref: /aosp_15_r20/external/musl/src/stat/mkfifoat.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1 #include <sys/stat.h>
2 
mkfifoat(int fd,const char * path,mode_t mode)3 int mkfifoat(int fd, const char *path, mode_t mode)
4 {
5 	return mknodat(fd, path, mode | S_IFIFO, 0);
6 }
7