summaryrefslogtreecommitdiff
path: root/sysdeps
diff options
context:
space:
mode:
authorAndreas Schwab <schwab@redhat.com>2009-09-07 10:09:06 +0200
committerAndreas Schwab <schwab@redhat.com>2009-09-07 10:09:06 +0200
commit317ff8d356d51ca43eb063e229c8732c187493e5 (patch)
tree7994d6ebcb136b91048f8e23b63d15ddab734d68 /sysdeps
parentcf2e25191323ba04233ddc23f2175eb0562dc03d (diff)
parentd76da20f7f77e9dfc7e81ebaf0f9902699a873e8 (diff)
Merge commit 'origin/master' into fedora/master
Diffstat (limited to 'sysdeps')
-rw-r--r--sysdeps/i386/i686/multiarch/strstr-c.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/i386/i686/multiarch/strstr-c.c b/sysdeps/i386/i686/multiarch/strstr-c.c
index 7ef1157ce4..efa9f78f81 100644
--- a/sysdeps/i386/i686/multiarch/strstr-c.c
+++ b/sysdeps/i386/i686/multiarch/strstr-c.c
@@ -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);