summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/cfgetospeed.c
blob: 4e392a2391d9f461eba14ece8e7edcab69973998 (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_ospeed;
}