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