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