blob: 4689c8f17a9c5418cacb49b24149d6d3229a79ab [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;
}