Add x86 32-bit SSE4.2 string functions.
[glibc.git] / sysdeps / i386 / i686 / multiarch / strstr-c.c
blob7ef1157ce40991e529a0e8d2ce6b950724f328cf
1 #include "init-arch.h"
3 #define STRSTR __strstr_ia32
4 #undef libc_hidden_builtin_def
5 #define libc_hidden_builtin_def(name) \
6 __hidden_ver1 (__strstr_ia32, __GI_strstr, __strstr_ia32);
8 #include "string/strstr.c"
10 extern char *__strstr_sse42 (const char *, const char *);
12 libc_ifunc (strstr, HAS_SSE4_2 ? __strstr_sse42 : __strstr_ia32);