URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [newlib-1.10.0/] [newlib/] [libc/] [sys/] [linux/] [sys/] [termios.h] - Rev 1765
Compare with Previous | Blame | View Log
/* libc/sys/linux/sys/termios.h - Terminal control definitions */ /* Written 2000 by Werner Almesberger */ #ifndef _SYS_TERMIOS_H #define _SYS_TERMIOS_H #include <linux/termios.h> /* grr, this shouldn't have to be here */ int tcgetattr(int fd,struct termios *termios_p); int tcsetattr(int fd,int optional_actions,const struct termios *termios_p); #endif