/* We must use the syscall directly since __ioctl does some extra work. */ #include #include #include struct __kernel_termios; static inline int tcsetattr_ioctl (int fd, unsigned long int request, const struct __kernel_termios *termios_p) { return INLINE_SYSCALL (ioctl, 3, fd, request, CHECK_1 (termios_p)); } #define __ioctl tcsetattr_ioctl #include