Restored work-around for hangs when trying to use disk-based handlers
[tangerine.git] / compiler / clib / mknod.c
blob3b1ecc4f782da7f7fb5ea0da9d9ab6b876b46bf5
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX function mknod().
6 */
8 #include "__errno.h"
10 #include <sys/types.h>
11 #include <sys/stat.h>
12 #include <fcntl.h>
13 #include <unistd.h>
15 int mknod(const char *pathname, mode_t mode, dev_t dev)
18 errno = EPERM;
19 return -1;
20 } /* mknod */