URL
https://opencores.org/ocsvn/or1k_old/or1k_old/trunk
Subversion Repositories or1k_old
[/] [or1k_old/] [trunk/] [newlib/] [newlib/] [libc/] [sys/] [sysvi386/] [speed.c] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
#define _NO_MACROS #include <sys/termios.h> speed_t cfgetospeed(const struct termios *tp) { return tp->c_ospeed; } int cfsetospeed(struct termios *tp, speed_t speed) { tp->c_ospeed = speed; return 0; } speed_t cfgetispeed(const struct termios *tp) { return tp->c_ispeed; } int cfsetispeed(struct termios *tp, speed_t speed) { tp->c_ispeed = speed; return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log