summaryrefslogtreecommitdiff
path: root/newlib/libc/sys/sysvi386/tcgetattr.c
blob: e368418c1ad4e9bed5cb99f2eb612553f8411268 (plain)
1
2
3
4
5
6
#include <sys/termios.h>

int
tcgetattr (int fd, struct termios *tp) {
	return _ioctl (fd, _XCGETA, tp);
}