diff options
Diffstat (limited to 'sysdeps/x86_64')
-rw-r--r-- | sysdeps/x86_64/wcscmp.S | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysdeps/x86_64/wcscmp.S b/sysdeps/x86_64/wcscmp.S index 5d6806c..bd36d9f 100644 --- a/sysdeps/x86_64/wcscmp.S +++ b/sysdeps/x86_64/wcscmp.S @@ -22,7 +22,7 @@ /* Note: wcscmp uses signed comparison, not unsighed as in strcmp function. */ .text -ENTRY (wcscmp) +ENTRY (__wcscmp) /* * This implementation uses SSE to compare up to 16 bytes at a time. */ @@ -945,5 +945,6 @@ L(equal): xor %rax, %rax ret -END (wcscmp) -libc_hidden_def (wcscmp) +END (__wcscmp) +libc_hidden_def (__wcscmp) +weak_alias (__wcscmp, wcscmp) |