blob: 5286235c5c6b504e81f084461cd38b783cece36d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#if 0
#include <termios.h>
#include "_assert.h"
speed_t cfgetospeed(const struct termios *termios_p)
{
ASSERT_NONNULL(termios_p);
return termios_p->c_oflag & B38400;
}
/*
POSIX(1)
*/
#endif
|