diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-08-14 22:04:01 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-08-14 22:04:01 -0700 |
commit | e9f82e0d1d70f361a40f1853c928df04918a38f5 (patch) | |
tree | cdbf94a494dc32833a600e6c86b776b59d646bd7 /sysdeps/x86_64/strcasecmp_l-nonascii.c | |
parent | ca6bb004ebd1cc7da72f1a761ffea377245d1ee9 (diff) | |
download | glibc-e9f82e0d1d70f361a40f1853c928df04918a38f5.tar.gz glibc-e9f82e0d1d70f361a40f1853c928df04918a38f5.tar.xz glibc-e9f82e0d1d70f361a40f1853c928df04918a38f5.zip |
Add optimized strncasecmp versions for x86-64.
Diffstat (limited to 'sysdeps/x86_64/strcasecmp_l-nonascii.c')
-rw-r--r-- | sysdeps/x86_64/strcasecmp_l-nonascii.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/x86_64/strcasecmp_l-nonascii.c b/sysdeps/x86_64/strcasecmp_l-nonascii.c index 7a0a04f345..13b35de82d 100644 --- a/sysdeps/x86_64/strcasecmp_l-nonascii.c +++ b/sysdeps/x86_64/strcasecmp_l-nonascii.c @@ -1,5 +1,8 @@ #include <string.h> +extern int __strcasecmp_l_nonascii (__const char *__s1, __const char *__s2, + __locale_t __loc); + #define __strcasecmp_l __strcasecmp_l_nonascii #define USE_IN_EXTENDED_LOCALE_MODEL 1 #include <string/strcasecmp.c> |