blob: 5e47114dcc8705ab4feac10fb64fca4e37c60a44 [file] [log] [blame]
#include <errno.h>
#include <sys/stat.h>
int mknodat(int fd, const char* path, mode_t mode, dev_t dev) {
errno = ENOSYS;
return -1;
}