]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Fix IA-32 strstr in multiarch configuration as well.
authorUlrich Drepper <drepper@redhat.com>
Thu, 3 Sep 2009 13:44:22 +0000 (06:44 -0700)
committerUlrich Drepper <drepper@redhat.com>
Thu, 3 Sep 2009 13:44:22 +0000 (06:44 -0700)
ChangeLog
sysdeps/i386/i686/multiarch/strstr-c.c

index 01e7c91f8115c8433348cf6243bbf2f52d9c4a3c..486c6c5243dce0e3c6756f0f5adf64a925792101 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-09-03  Ulrich Drepper  <drepper@redhat.com>
+
+       * sysdeps/i386/i686/multiarch/strstr-c.c (__strstr_sse42,
+       __strstr_ia32): Add attribute_hidden.
+
 2009-09-01  Andreas Schwab  <schwab@redhat.com>
 
        * hesiod/nss_hesiod/hesiod-grp.c (internal_gid_from_group): Fix
index 7ef1157ce40991e529a0e8d2ce6b950724f328cf..efa9f78f81ff6f973f89f2fb1f5d6b9f5ac7b2ad 100644 (file)
@@ -7,6 +7,7 @@
 
 #include "string/strstr.c"
 
-extern char *__strstr_sse42 (const char *, const char *);
+extern char *__strstr_sse42 (const char *, const char *) attribute_hidden;
+extern __typeof (__strstr_ia32) __strstr_ia32 attribute_hidden;
 
 libc_ifunc (strstr, HAS_SSE4_2 ? __strstr_sse42 : __strstr_ia32);