mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-29 08:11:08 +00:00
13 lines
350 B
C
13 lines
350 B
C
#include <string.h>
|
|
|
|
extern __typeof (strcasecmp) __strcasecmp_nonascii;
|
|
|
|
#define __strcasecmp __strcasecmp_nonascii
|
|
#include <string/strcasecmp.c>
|
|
|
|
strong_alias (__strcasecmp_nonascii, __strcasecmp_ia32)
|
|
|
|
/* The needs of strcasecmp in libc are minimal, no need to go through
|
|
the IFUNC. */
|
|
strong_alias (__strcasecmp_nonascii, __GI___strcasecmp)
|