r6831@lvps87-230-33-50: verhaegs | 2008-02-03 14:08:57 +0100
[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;