mirror of git://sourceware.org/git/glibc.git
13 lines
339 B
C
13 lines
339 B
C
|
|
#include "init-arch.h"
|
||
|
|
|
||
|
|
#define STRSTR __strstr_ia32
|
||
|
|
#undef libc_hidden_builtin_def
|
||
|
|
#define libc_hidden_builtin_def(name) \
|
||
|
|
__hidden_ver1 (__strstr_ia32, __GI_strstr, __strstr_ia32);
|
||
|
|
|
||
|
|
#include "string/strstr.c"
|
||
|
|
|
||
|
|
extern char *__strstr_sse42 (const char *, const char *);
|
||
|
|
|
||
|
|
libc_ifunc (strstr, HAS_SSE4_2 ? __strstr_sse42 : __strstr_ia32);
|