source: trunk/minix/lib/posix/_cfgetispeed.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 178 bytes
Line 
1/*
2posix/_cfgetispeed
3
4Created: June 11, 1993 by Philip Homburg
5*/
6
7#include <termios.h>
8
9speed_t _cfgetispeed(const struct termios *termios_p)
10{
11 return termios_p->c_ispeed;
12}
Note: See TracBrowser for help on using the repository browser.