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 01e7c91..486c6c5 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 7ef1157..efa9f78 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);