blob: 834e656a2c1d92dabbd01b77c1dc2f4b2e367d86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Multiple versions of strcasestr
All versions must be listed in ifunc-impl-list.c. */
#include "init-arch.h"
#define STRCASESTR __strcasestr_sse2
#include "string/strcasestr.c"
extern __typeof (__strcasestr_sse2) __strcasestr_sse2 attribute_hidden;
libc_ifunc (__strcasestr,
__strcasestr_sse2);
|