diff options
Diffstat (limited to 'lib/libc/termios/cfgetospeed.c')
-rw-r--r-- | lib/libc/termios/cfgetospeed.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/termios/cfgetospeed.c b/lib/libc/termios/cfgetospeed.c index c5d3114ba2f..fcc546a3b62 100644 --- a/lib/libc/termios/cfgetospeed.c +++ b/lib/libc/termios/cfgetospeed.c @@ -28,14 +28,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: cfgetospeed.c,v 1.3 2003/06/02 20:18:39 millert Exp $"; +static char rcsid[] = "$OpenBSD: cfgetospeed.c,v 1.4 2003/06/11 21:03:09 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include <termios.h> speed_t -cfgetospeed(t) - const struct termios *t; +cfgetospeed(const struct termios *t) { return (t->c_ospeed); } |