summaryrefslogtreecommitdiff
path: root/stdlib/llabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/llabs.c')
-rw-r--r--stdlib/llabs.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/stdlib/llabs.c b/stdlib/llabs.c
index 8f301d165d..b3e60a036a 100644
--- a/stdlib/llabs.c
+++ b/stdlib/llabs.c
@@ -1,5 +1,5 @@
/* `long long int' absolute value.
- Copyright (C) 1991-2015 Free Software Foundation, Inc.
+ Copyright (C) 1991-2016 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
@@ -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;
}