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
isblank() implementation.
[minix.git]
/
lib
/
libc
/
posix
/
_cfsetispeed.c
blob
76b4974e9000240f57b0b0ea7050fb7ea0dddf53
1
/*
2
posix/_cfsetispeed
3
4
Created: June 11, 1993 by Philip Homburg
5
*/
6
7
#include <termios.h>
8
9
int
_cfsetispeed
(
struct
termios
*
termios_p
,
speed_t speed
)
10
{
11
termios_p
->
c_ispeed
=
speed
;
12
return
0
;
13
}