diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-07-30 00:14:04 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-07-30 00:14:04 -0700 |
commit | 42e08a5438ddbd9d550d914733c0bc5ba96d79ec (patch) | |
tree | 5a9f393d2b0b213db465584b0d6b4f01d277b02a /sysdeps/x86_64/strcasecmp_l.S | |
parent | fe36dd025ea34c5c082b688592618ec72369b96b (diff) | |
download | glibc-42e08a5438ddbd9d550d914733c0bc5ba96d79ec.tar glibc-42e08a5438ddbd9d550d914733c0bc5ba96d79ec.tar.gz glibc-42e08a5438ddbd9d550d914733c0bc5ba96d79ec.tar.bz2 glibc-42e08a5438ddbd9d550d914733c0bc5ba96d79ec.zip |
Implement optimized strcaecmp for x86-64.
Diffstat (limited to 'sysdeps/x86_64/strcasecmp_l.S')
-rw-r--r-- | sysdeps/x86_64/strcasecmp_l.S | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sysdeps/x86_64/strcasecmp_l.S b/sysdeps/x86_64/strcasecmp_l.S new file mode 100644 index 0000000000..5456b3a49e --- /dev/null +++ b/sysdeps/x86_64/strcasecmp_l.S @@ -0,0 +1,6 @@ +#define STRCMP __strcasecmp_l +#define USE_AS_STRCASECMP_L +#include "strcmp.S" + +weak_alias (__strcasecmp_l, strcasecmp_l) +libc_hidden_def (strcasecmp_l) |