]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/x86_64/wcscmp.S
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / sysdeps / x86_64 / wcscmp.S
index 05e5ad95df635571a6567d59ac21c023d97e12ba..352c722136fdf4460a2be8c70116b84da65ea96f 100644 (file)
@@ -1,5 +1,5 @@
 /* Optimized wcscmp for x86-64 with SSE2.
-   Copyright (C) 2011 Free Software Foundation, Inc.
+   Copyright (C) 2011-2019 Free Software Foundation, Inc.
    Contributed by Intel Corporation.
    This file is part of the GNU C Library.
 
@@ -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,8 @@ L(equal):
        xor     %rax, %rax
        ret
 
-END (wcscmp)
-libc_hidden_def (wcscmp)
+END (__wcscmp)
+#ifndef __wcscmp
+libc_hidden_def (__wcscmp)
+weak_alias (__wcscmp, wcscmp)
+#endif