mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 07:40:05 +00:00
9 lines
274 B
C
9 lines
274 B
C
/* Don't define multiple versions for strpbrk in static library since we
|
|
need strpbrk before the initialization happened. */
|
|
#ifdef SHARED
|
|
# define USE_AS_STRPBRK
|
|
# define STRCSPN_SSE2 __strpbrk_sse2
|
|
# define STRCSPN_SSE42 __strpbrk_sse42
|
|
# include "strcspn-c.c"
|
|
#endif
|