summaryrefslogtreecommitdiff
path: root/lib/libc/termios/cfgetospeed.c
blob: c9f6cbd21c7b82e52bd4038192921d00afffe14b (plain)
1
2
3
4
5
6
7
#include "asm-generic/termbits-common.h"
#include <asm-generic/termbits.h>

speed_t cfgetospeed(const struct termios *termios_p)
{
	return termios_p->c_cflag & CBAUD;
}