about summary refs log tree commit diff
path: root/termios
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2017-10-01 17:48:11 -0700
committerH.J. Lu <hjl.tools@gmail.com>2017-10-01 17:48:24 -0700
commit87078544f24cfbd355bf2f7e63a0d01ff7c96cca (patch)
tree40347f0d9510bea540d38f6cb4830caca1ba7289 /termios
parentdd3121df08d5ee44ba770d12365022aa802fb364 (diff)
downloadglibc-87078544f24cfbd355bf2f7e63a0d01ff7c96cca.tar.gz
glibc-87078544f24cfbd355bf2f7e63a0d01ff7c96cca.tar.xz
glibc-87078544f24cfbd355bf2f7e63a0d01ff7c96cca.zip
Hide internal __tcgetattr function [BZ #18822]
Hide internal __tcgetattr function to allow direct access within libc.so
and libc.a without using GOT nor PLT.

	[BZ #18822]
	* include/termios.h (__tcgetattr): Add libc_hidden_proto.
	* sysdeps/unix/bsd/tcgetattr.c (__tcgetattr): Add
	libc_hidden_def.
	* sysdeps/unix/sysv/linux/tcgetattr.c (__tcgetattr): Likewise.
	* termios/tcgetattr.c (__tcgetattr): Likewise.
Diffstat (limited to 'termios')
-rw-r--r--termios/tcgetattr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/termios/tcgetattr.c b/termios/tcgetattr.c
index a5c076b1b0..12a56dd30f 100644
--- a/termios/tcgetattr.c
+++ b/termios/tcgetattr.c
@@ -39,4 +39,5 @@ __tcgetattr (int fd, struct termios *termios_p)
 }
 stub_warning (tcgetattr)
 
+libc_hidden_def (__tcgetattr)
 weak_alias (__tcgetattr, tcgetattr)