blob: beebd84e08995c36064ea67706ab7e48d95a48a1 [file] [log] [blame]
#include <sys/stat.h>
#include <fcntl.h>
#include "syscall.h"
int mknod(const char *path, mode_t mode, dev_t dev)
{
#ifdef SYS_mknod
return syscall(SYS_mknod, path, mode, dev);
#else
return syscall(SYS_mknodat, AT_FDCWD, path, mode, dev);
#endif
}