repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Restored work-around for hangs when trying to use disk-based handlers
[tangerine.git]
/
compiler
/
clib
/
mknod.c
blob
3b1ecc4f782da7f7fb5ea0da9d9ab6b876b46bf5
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
5
POSIX function mknod().
6
*/
7
8
#include
"__errno.h"
9
10
#include <sys/types.h>
11
#include <sys/stat.h>
12
#include <fcntl.h>
13
#include <unistd.h>
14
15
int
mknod
(
const char
*
pathname
,
mode_t mode
,
dev_t dev
)
16
17
{
18
errno
=
EPERM
;
19
return
-
1
;
20
}
/* mknod */
21