summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/cfgetospeed.c
blob: 4d70888f7ee684657b9c70330bf2694bc1814c17 (plain)
1
2
3
4
5
6
#include <termios.h>
#include <sys/types.h>

speed_t cfgetospeed(struct termios *termios_p) {
  return ((termios_p->c_iflag & (CBAUD|CBAUDEX)));
}