blob: 11dd06edbf4bb4900f89bfb33f7cccbf514b834f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _SYS_IOCTL_H
#define _SYS_IOCTL_H
#include <linux/ioctl.h>
#include <features.h>
#include <termios.h>
#include <sys/socketio.h>
__BEGIN_DECLS
extern int ioctl __P ((int __fildes, int __cmd, ...));
extern int __ioctl __P ((int __fildes, int __cmd, ...));
__END_DECLS
#endif
|