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

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

speed_t cfgetispeed(struct termios *termios_p)	__attribute__((weak,alias("cfgetospeed")));