projects
/
oweals
/
musl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
fix mknod and mknodat to accept large dev_t values
[oweals/musl.git]
/
src
/
stat
/
mknod.c
1
#include <sys/stat.h>
2
#include "syscall.h"
3
4
int mknod(const char *path, mode_t mode, dev_t dev)
5
{
6
return syscall(SYS_mknod, path, mode, dev);
7
}