7 lines
107 B
C
Raw Normal View History

#include <sys/termios.h>
int
tcgetattr (int fd, struct termios *tp) {
return _ioctl (fd, _XCGETA, tp);
}