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