arch/m68k-amiga: Define the gcc symbol 'start' instead of using .bss
[AROS.git] / compiler / clib / cfgetospeed.c
blob9ae82fd6b3e5703e97482e38941f65fb9e5a3c28
1 #include <termios.h>
3 speed_t cfgetospeed(const struct termios *__termios_p)
5 if (__termios_p)
6 return __termios_p->c_ospeed;
8 /* According to man pages and online standard documents providing an
9 * invalid pointer does not result in an error. Tests on Linux resulted
10 * in segmentation faults, we can not do this so we retun a speed of 0.
12 return B0;