blob: 400539f3879a260fffccbd5bdaba9a1961a25717 (
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/tcgetattr.c>
|