diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 16:03:28 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2017-10-01 16:03:41 -0700 |
commit | 78cf1d74d28c9312d888dea1ad3de01d38c5fc4a (patch) | |
tree | 92e83c155360cc3795a821e312422247899fe1ac /string/strsep.c | |
parent | 85b358949d506ddc7c35301e7ae1316d2036a736 (diff) | |
download | glibc-78cf1d74d28c9312d888dea1ad3de01d38c5fc4a.tar.gz |
Hide internal __strsep function [BZ #18822]
Hide internal __strsep function to allow direct access within libc.so and
libc.a without using GOT nor PLT.
[BZ #18822]
* include/string.h (__strsep): Add libc_hidden_proto.
* string/strsep.c (__strsep): Add libc_hidden_def.
Diffstat (limited to 'string/strsep.c')
-rw-r--r-- | string/strsep.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/string/strsep.c b/string/strsep.c index 7091234a6c..b6103657a8 100644 --- a/string/strsep.c +++ b/string/strsep.c @@ -46,4 +46,5 @@ __strsep (char **stringp, const char *delim) } weak_alias (__strsep, strsep) strong_alias (__strsep, __strsep_g) +libc_hidden_def (__strsep) libc_hidden_def (__strsep_g) |