Restored work-around for hangs when trying to use disk-based handlers
[tangerine.git] / compiler / clib / ioctl.c
blob90d2e95bdcd0a479625ec961d6bb3368b4380bf3
1 /*
2 Copyright © 2004, The AROS Development Team. All rights reserved.
3 $Id$
4 */
6 #include <aros/debug.h>
8 #include <errno.h>
9 #include <sys/ioctl.h>
11 int ioctl(int fd, int request, ...)
13 # warning Implement ioctl()
14 AROS_FUNCTION_NOT_IMPLEMENTED("arosc");
16 errno = ENOSYS;
17 return -1;