isblank() implementation.
[minix.git] / lib / libc / posix / _cfsetispeed.c
blob76b4974e9000240f57b0b0ea7050fb7ea0dddf53
1 /*
2 posix/_cfsetispeed
4 Created: June 11, 1993 by Philip Homburg
5 */
7 #include <termios.h>
9 int _cfsetispeed(struct termios *termios_p, speed_t speed)
11 termios_p->c_ispeed= speed;
12 return 0;