minix/lib/posix/_cfsetospeed.c
2005-04-21 14:53:53 +00:00

14 lines
195 B
C
Executable file

/*
posix/_cfsetospeed
Created: June 11, 1993 by Philip Homburg
*/
#include <termios.h>
int _cfsetospeed(struct termios *termios_p, speed_t speed)
{
termios_p->c_ospeed= speed;
return 0;
}