blob: 727505fe7410d5f26a45cd8b9e599401ce0676f9 [file] [log] [blame]
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/syscall.h>
#ifndef __NR_mknod
int mknod(const char *pathname, mode_t mode, dev_t dev)
{
return mknodat(AT_FDCWD, pathname, mode, dev);
}
#endif /* __NR_mknod */