1 /* libc/sys/linux/sys/ioctl.h - ioctl prototype */
2 
3 /* Written 2000 by Werner Almesberger */
4 
5 
6 #ifndef _SYS_IOCTL_H
7 #define _SYS_IOCTL_H
8 
9 #include <bits/ioctls.h>
10 
11 int ioctl(int fd,int request,...);
12 
13 #endif
14