blob: 49f5b9fd952d3cdcdc618e93d3d36ebd502ddad2 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
/* Multiple versions of strcasecmp and strcasecmp_l
All versions must be listed in ifunc-impl-list.c. */
#define STRCMP __strcasecmp_l
#define USE_AS_STRCASECMP_L
#include "strcmp.S"
weak_alias (__strcasecmp_l, strcasecmp_l)
libc_hidden_def (strcasecmp_l)
|