Detab
[AROS.git] / compiler / clib / ioctl.c
blob40287ef5aab8fb914c436667dcb6922d600ef92a
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include <errno.h>
10 /*****************************************************************************
12 NAME */
14 #include <sys/ioctl.h>
16 int ioctl(
18 /* SYNOPSIS */
19 int fd,
20 int request,
21 ...)
23 /* FUNCTION
25 INPUTS
27 RESULT
29 NOTES
30 Not implemented.
32 EXAMPLE
34 BUGS
36 SEE ALSO
38 INTERNALS
40 ******************************************************************************/
42 /* FIXME: Implement ioctl() */
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
44 errno = ENOSYS;
46 return -1;