repo.or.cz
/
minix.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
secondary cache feature in vm.
[minix.git]
/
lib
/
libc
/
posix
/
_cfsetospeed.c
blob
ddc162d5d03be7bec4e4e07762e3b6628772cf69
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
}