diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-10-15 14:25:45 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-10-15 14:26:00 -0700 |
commit | f84114688abe316b6a736302a7c13f4883d41f13 (patch) | |
tree | 23a17c5bd2c4c8f9ce6ea0ec30f452cc0f86dc73 /ChangeLog | |
parent | f3fc94c04f72e492f55be4349c6df2a910762b70 (diff) | |
download | glibc-f84114688abe316b6a736302a7c13f4883d41f13.tar.gz glibc-f84114688abe316b6a736302a7c13f4883d41f13.tar.xz glibc-f84114688abe316b6a736302a7c13f4883d41f13.zip |
Mark ld.so internel string functions hidden
Since ld.so internel string functions are only used internally in ld.so, they can be made hidden. [BZ #19122] * include/string.h [IS_IN (rtld)] (__stpcpy): Add attribute_hidden. [IS_IN (rtld)] (__strdup): Likewise. [IS_IN (rtld)] (__strerror_r): Likewise. [IS_IN (rtld)] (__strsep_g): Likewise. [IS_IN (rtld)] (memchr): Likewise. [IS_IN (rtld)] (memcmp): Likewise. [IS_IN (rtld)] (memcpy): Likewise. [IS_IN (rtld)] (memmove): Likewise. [IS_IN (rtld)] (memset): Likewise. [IS_IN (rtld)] (rawmemchr): Likewise. [IS_IN (rtld)] (stpcpy): Likewise. [IS_IN (rtld)] (strchr): Likewise. [IS_IN (rtld)] (strcmp): Likewise. [IS_IN (rtld)] (strlen): Likewise. [IS_IN (rtld)] (strnlen): Likewise. [IS_IN (rtld)] (strsep): Likewise.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index bdb44a2668..bca8f9e121 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,24 @@ 2015-10-15 H.J. Lu <hongjiu.lu@intel.com> [BZ #19122] + * include/string.h [IS_IN (rtld)] (__stpcpy): Add + attribute_hidden. + [IS_IN (rtld)] (__strdup): Likewise. + [IS_IN (rtld)] (__strerror_r): Likewise. + [IS_IN (rtld)] (__strsep_g): Likewise. + [IS_IN (rtld)] (memchr): Likewise. + [IS_IN (rtld)] (memcmp): Likewise. + [IS_IN (rtld)] (memcpy): Likewise. + [IS_IN (rtld)] (memmove): Likewise. + [IS_IN (rtld)] (memset): Likewise. + [IS_IN (rtld)] (rawmemchr): Likewise. + [IS_IN (rtld)] (stpcpy): Likewise. + [IS_IN (rtld)] (strchr): Likewise. + [IS_IN (rtld)] (strcmp): Likewise. + [IS_IN (rtld)] (strlen): Likewise. + [IS_IN (rtld)] (strnlen): Likewise. + [IS_IN (rtld)] (strsep): Likewise. + * include/stdlib.h [IS_IN (rtld)] (unsetenv): Add attribute_hidden. [IS_IN (rtld)] (__strtoul_internal): Likewise. |