repo.or.cz
/
minix3.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
. pci driver now returns devices, even when they have been pci_reserve()d
[minix3.git]
/
lib
/
posix
/
_cfgetospeed.c
blob
10bbda963dfbd818a290ff476a0fb63eaf8563a5
1
/*
2
posix/_cfgetospeed
3
4
Created: June 11, 1993 by Philip Homburg
5
*/
6
7
#include <termios.h>
8
9
speed_t
_cfgetospeed
(
const struct
termios
*
termios_p
)
10
{
11
return
termios_p
->
c_ospeed
;
12
}