blob: 88f13c9e0616f37d7a13ee07f4a15c654cd824dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#include <termios.h>
#include "nonstd/assert.h"
speed_t cfgetospeed(const struct termios *termios_p)
{
ASSERT_NONNULL(termios_p);
return termios_p->c_oflag; /* FIXME */
}
/*
POSIX(1)
*/
|