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
/
ioctl.c
blob
90d2e95bdcd0a479625ec961d6bb3368b4380bf3
1
/*
2
Copyright © 2004, The AROS Development Team. All rights reserved.
3
$Id$
4
*/
5
6
#include <aros/debug.h>
7
8
#include <errno.h>
9
#include <sys/ioctl.h>
10
11
int
ioctl
(
int
fd
,
int
request
, ...)
12
{
13
# warning Implement ioctl()
14
AROS_FUNCTION_NOT_IMPLEMENTED
(
"arosc"
);
15
16
errno
=
ENOSYS
;
17
return
-
1
;
18
}