repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make configure attempt to catch broken floating point CFLAGS/defaults
[musl.git]
/
src
/
stat
/
mkfifoat.c
blob
d3a1f9708775e9e5835b6c055315bac43ba0a09a
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
}