blob: cfb8149ba10629600cb4b3beefbf6258753907d3 (
plain) (
blame)
1
2
3
4
|
/* We must use __syscall_ioctl since __ioctl does some extra work. */
extern int __syscall_ioctl (int __fd, unsigned long int __request, ...);
#define __ioctl __syscall_ioctl
#include <sysdeps/unix/sysv/linux/tcsetattr.c>
|