1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef _SYS_IOCTL_H
- # error "Never use <bits/ioctls.h> directly; include <sys/ioctl.h> instead."
- #endif
- #include <asm/ioctls.h>
- #undef TCGETS
- #undef TCSETS
- #undef TCSETSW
- #undef TCSETSF
- #define TCGETS _IOR ('T', 8, char[36])
- #define TCSETS _IOW ('T', 9, char[36])
- #define TCSETSW _IOW ('T', 10, char[36])
- #define TCSETSF _IOW ('T', 11, char[36])
- #include <linux/sockios.h>
|