update mappings to reflect recent changes
[AROS.git] / compiler / clib / mknod.c
blob0e3e57c887bcc666ba1888a6e2f6561af4696041
1 /*
2 Copyright © 2004-2012, The AROS Development Team. All rights reserved.
3 $Id$
5 POSIX.1-2008 function mknod().
6 */
8 #include <sys/types.h>
9 #include <fcntl.h>
10 #include <unistd.h>
11 #include <errno.h>
13 /*****************************************************************************
15 NAME */
16 #include <sys/stat.h>
18 int mknod(
20 /* SYNOPSIS */
21 const char *pathname,
22 mode_t mode,
23 dev_t dev)
25 /* FUNCTION
27 INPUTS
29 RESULT
31 NOTES
32 Not implemented.
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 ******************************************************************************/
44 /* TODO: Implement mknod() */
45 errno = EPERM;
46 return -1;
47 } /* mknod */