source:
trunk/minix/lib/posix/_cfgetospeed.c@
11
| Last change on this file since 11 was 9, checked in by , 14 years ago | |
|---|---|
| File size: 178 bytes | |
| Rev | Line | |
|---|---|---|
| [9] | 1 | /* |
| 2 | posix/_cfgetospeed | |
| 3 | ||
| 4 | Created: June 11, 1993 by Philip Homburg | |
| 5 | */ | |
| 6 | ||
| 7 | #include <termios.h> | |
| 8 | ||
| 9 | speed_t _cfgetospeed(const struct termios *termios_p) | |
| 10 | { | |
| 11 | return termios_p->c_ospeed; | |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.