summaryrefslogtreecommitdiff
path: root/src/stdint/UINTMAX_C.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdint/UINTMAX_C.c')
-rw-r--r--src/stdint/UINTMAX_C.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stdint/UINTMAX_C.c b/src/stdint/UINTMAX_C.c
index d505d108..00b10906 100644
--- a/src/stdint/UINTMAX_C.c
+++ b/src/stdint/UINTMAX_C.c
@@ -1,5 +1,6 @@
#include <stdint.h>
-#define UINTMAX_C(value) ((uintmax_t)value##ULL)
+
+#define UINTMAX_C(__value) ((uintmax_t)__value##ULL)
/*
STDC(199901)