blob: 6d2e0a3df3e7ca51f9889120b058ff729ec5434b (
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 cfgetispeed(const struct termios *termios_p)
{
ASSERT_NONNULL(termios_p);
return termios_p->c_iflag & B38400;
}
/*
POSIX(1)
*/
#endif
|