/* Copyright (C) 1996 DJ Delorie, see COPYING.DJ for details */ #include #include #include speed_t cfgetospeed (const struct termios *termiosp) { /* check arguments */ if (termiosp == NULL) { errno = EINVAL; return (speed_t) -1; } return termiosp->c_ospeed; }