]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - stdlib/llabs.c
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / stdlib / llabs.c
index 695ef0805df9b91a5afb37443b337908325bccc7..58b9d5e06df5e067d15a16f3e3e324ddce1e57ad 100644 (file)
@@ -1,5 +1,5 @@
 /* `long long int' absolute value.
-   Copyright (C) 1991-2014 Free Software Foundation, Inc.
+   Copyright (C) 1991-2020 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -14,7 +14,7 @@
 
    You should have received a copy of the GNU Lesser General Public
    License along with the GNU C Library; if not, see
-   <http://www.gnu.org/licenses/>.  */
+   <https://www.gnu.org/licenses/>.  */
 
 #include <stdlib.h>
 
@@ -23,8 +23,7 @@
 
 /* Return the absolute value of I.  */
 long long int
-llabs (i)
-     long long int i;
+llabs (long long int i)
 {
   return i < 0 ? -i : i;
 }