move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / stat / mkfifoat.c
blobd3a1f9708775e9e5835b6c055315bac43ba0a09a
1 #include <sys/stat.h>
3 int mkfifoat(int fd, const char *path, mode_t mode)
5 return mknodat(fd, path, mode | S_IFIFO, 0);