diff options
Diffstat (limited to 'sysdeps/unix/bsd/sun/sunos4/speed.c')
-rw-r--r-- | sysdeps/unix/bsd/sun/sunos4/speed.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/bsd/sun/sunos4/speed.c b/sysdeps/unix/bsd/sun/sunos4/speed.c index dca3468929..262d70fdfb 100644 --- a/sysdeps/unix/bsd/sun/sunos4/speed.c +++ b/sysdeps/unix/bsd/sun/sunos4/speed.c @@ -1,5 +1,5 @@ /* `struct termios' speed frobnication functions. SunOS 4 version. - Copyright (C) 1991, 1992, 1993, 1996, 1997 Free Software Foundation, Inc. + Copyright (C) 1991,1992,1993,1996,1997,2002 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -87,6 +87,7 @@ cfsetospeed (termios_p, speed) __set_errno (EINVAL); return -1; } +libc_hidden_def (cfsetospeed) /* Set the input baud rate stored in *TERMIOS_P to SPEED. */ int @@ -114,3 +115,4 @@ cfsetispeed (termios_p, speed) __set_errno (EINVAL); return -1; } +libc_hidden_def (cfsetispeed) |