xref: /third_party/musl/src/stat/mkfifoat.c (revision 570af302)
1#include <sys/stat.h>
2#include <unsupported_api.h>
3
4int mkfifoat(int fd, const char *path, mode_t mode)
5{
6	UNSUPPORTED_API_VOID(LITEOS_A);
7	return mknodat(fd, path, mode | S_IFIFO, 0);
8}
9