diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/speed.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/speed.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/speed.c b/sysdeps/unix/sysv/linux/speed.c index 74c660e04c..a6a03a0c63 100644 --- a/sysdeps/unix/sysv/linux/speed.c +++ b/sysdeps/unix/sysv/linux/speed.c @@ -1,5 +1,5 @@ /* `struct termios' speed frobnication functions. Linux version. - Copyright (C) 1991, 92, 93, 95, 96, 97, 98, 2000 Free Software Foundation, Inc. + Copyright (C) 1991,92,93,95,96,97,98,2000,02 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 @@ -71,6 +71,8 @@ cfsetospeed (termios_p, speed) return 0; } +libc_hidden_def (cfsetospeed) + /* Set the input baud rate stored in *TERMIOS_P to SPEED. Although for Linux there is no difference between input and output @@ -99,3 +101,4 @@ cfsetispeed (termios_p, speed) return 0; } +libc_hidden_def (cfsetispeed) |