blob: fd268cf194841ff1ad6557d84f86818418a3567d [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
}