]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/alpha/strcmp.S
Update copyright dates with scripts/update-copyrights
[thirdparty/glibc.git] / sysdeps / alpha / strcmp.S
index 7dcae04ea4d8c52e3569dca7f92fdeeb9c3366cc..40f827378dac50fd9afea08a534003b886c87538 100644 (file)
@@ -1,22 +1,20 @@
-/* Copyright (C) 1996 Free Software Foundation, Inc.
+/* Copyright (C) 1996-2021 Free Software Foundation, Inc.
    Contributed by Richard Henderson (rth@tamu.edu)
-
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
-   modify it under the terms of the GNU Library General Public License as
-   published by the Free Software Foundation; either version 2 of the
-   License, or (at your option) any later version.
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
 
    The GNU C Library is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-   Library General Public License for more details.
+   Lesser General Public License for more details.
 
-   You should have received a copy of the GNU Library General Public
-   License along with the GNU C Library; see the file COPYING.LIB.  If
-   not, write to the Free Software Foundation, Inc., 675 Mass Ave,
-   Cambridge, MA 02139, USA.  */
+   You should have received a copy of the GNU Lesser General Public
+   License along with the GNU C Library.  If not, see
+   <https://www.gnu.org/licenses/>.  */
 
 /* Bytewise compare two null-terminated strings.  */
 
@@ -178,7 +176,7 @@ $eos:
        beq     v0, $done       # .. e1 :
 
        /* Here we have two differing co-aligned words in t0 & t1.
-           Bytewise compare them and return (t0 > t1 ? 1 : -1).  */
+          Bytewise compare them and return (t0 > t1 ? 1 : -1).  */
 $wordcmp:
        cmpbge  t0, t1, t2      # e0    : comparison yields bit mask of ge
        cmpbge  t1, t0, t3      # .. e1 :
@@ -193,3 +191,4 @@ $done:
        ret                     # e1    :
 
        END(strcmp)
+libc_hidden_builtin_def (strcmp)