secondary cache feature in vm.
[minix.git] / lib / libc / posix / _cfsetospeed.c
blobddc162d5d03be7bec4e4e07762e3b6628772cf69
1 /*
2 posix/_cfsetospeed
4 Created: June 11, 1993 by Philip Homburg
5 */
7 #include <termios.h>
9 int _cfsetospeed(struct termios *termios_p, speed_t speed)
11 termios_p->c_ospeed= speed;
12 return 0;