Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tcgetattr.c « sysvi386 « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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);
}