Fixed UHCI port bits for big endian machines.
[cake.git] / compiler / clib / ioctl.c
blobc6791c6d6c1795157da5f1e488e8c3a46dfcc0a2
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 # warning Implement ioctl()
43 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
45 errno = ENOSYS;
46 return -1;