0ebc198c1c500ab532f1bda94891e4859949b706
[musl] / cfgetospeed.c
1 #include <termios.h>
2 #include <sys/ioctl.h>
3
4 speed_t cfgetospeed(const struct termios *tio)
5 {
6         return tio->c_cflag & CBAUD;
7 }
8
9 speed_t cfgetispeed(const struct termios *tio)
10 {
11         return cfgetospeed(tio);
12 }