aboutsummaryrefslogtreecommitdiffstats
path: root/src/stdlib/abs/llabs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/abs/llabs.c')
-rw-r--r--src/stdlib/abs/llabs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/abs/llabs.c b/src/stdlib/abs/llabs.c
index 23ae2ed..71e5a1b 100644
--- a/src/stdlib/abs/llabs.c
+++ b/src/stdlib/abs/llabs.c
@@ -30,7 +30,7 @@
* @param value The integer.
* @return The absolute value of the integer.
*/
-long long int llabs(long long int value)
+long long int (llabs)(long long int value)
{
return value < 0 ? -value : value;
}