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