muimaster.library: support Listview_List in List
[AROS.git] / compiler / posixc / ioctl.c
blob8362c3731e5b2389cef76e861361b22ff1969bad
1 /*
2 Copyright © 2004-2013, 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("posixc");
44 errno = ENOSYS;
46 return -1;