#include "asm/unistd_64.h" // for __NR_mknodat #include // for mknodat #include // for dev_t, mode_t #include // for __syscall_4, syscall int mknodat(int fd, const char *path, mode_t mode, dev_t dev) { return syscall(mknodat, fd, path, mode, dev); }