projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
implement futimens and utimensat
[oweals/musl.git]
/
src
/
stat
/
mkfifoat.c
1
#include <sys/stat.h>
2
3
int mkfifoat(int fd, const char *path, mode_t mode)
4
{
5
return mknodat(fd, path, mode | S_IFIFO, 0);
6
}