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
delete a redundant if in dynamic linker ctor execution loop
[musl.git]
/
src
/
stat
/
mknodat.c
blob
7c97c91aaa58bf5ae2a0be33348ad01f3fd8baac
1
#include <sys/stat.h>
2
#include
"syscall.h"
3
4
int
mknodat
(
int
fd
,
const char
*
path
,
mode_t mode
,
dev_t dev
)
5
{
6
return
syscall
(
SYS_mknodat
,
fd
,
path
,
mode
,
dev
);
7
}