blob: 5ac50f5c803b456c0840a4600fc0428d85bb201d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include "asm/unistd_64.h" // for __NR_mknodat
#include <sys/stat.h> // for mknodat
#include <sys/types.h> // for dev_t, mode_t
#include <syscall.h> // for __syscall_4, syscall
int mknodat(int fd, const char *path, mode_t mode, dev_t dev)
{
return syscall(mknodat, fd, path, mode, dev);
}
|