about summary refs log tree commit diff
path: root/sysdeps/i386/multiarch/strcasecmp-i386.c
blob: eb5d602dc165b98dcaed226bac60555f4e9ee0aa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <string.h>

extern __typeof (strcasecmp) __strcasecmp_nonascii;

#define __strcasecmp __strcasecmp_nonascii
#include <string/strcasecmp.c>

strong_alias (__strcasecmp_nonascii, __strcasecmp_i386)

/* The needs of strcasecmp in libc are minimal, no need to go through
   the IFUNC.  */
strong_alias (__strcasecmp_nonascii, __GI___strcasecmp)