mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
Before this change, we incorrectly used the SSE2 variant in the implementation, without checking that the system actually supports SSE2. Tested-by: Sam James <sam@gentoo.org>
9 lines
210 B
C
9 lines
210 B
C
#if IS_IN (libc)
|
|
# define MEMRCHR __memrchr_ia32
|
|
# include <string.h>
|
|
extern void *__memrchr_ia32 (const void *, int, size_t);
|
|
#endif
|
|
|
|
#include "string/memrchr.c"
|
|
strong_alias (__memrchr_ia32, __GI___memrchr)
|