summaryrefslogtreecommitdiff
path: root/src/stdint/INTMAX_C.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-03-06 19:56:37 -0500
committerJakob Kaivo <jkk@ung.org>2019-03-06 19:56:37 -0500
commit85f8cbf3d96d1b1dc0127398b762d58676d4f4f4 (patch)
tree98a5ec2dd988d53370ed4bd8db7af1c133c535fb /src/stdint/INTMAX_C.c
parent4dd73957883dd09ac0e7d7de4974e3696298b0c0 (diff)
prefix arguments with __
Diffstat (limited to 'src/stdint/INTMAX_C.c')
-rw-r--r--src/stdint/INTMAX_C.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/stdint/INTMAX_C.c b/src/stdint/INTMAX_C.c
index c051c9ae..2cf10573 100644
--- a/src/stdint/INTMAX_C.c
+++ b/src/stdint/INTMAX_C.c
@@ -1,5 +1,6 @@
#include <stdint.h>
-#define INTMAX_C(value) ((intmax_t)value##LL)
+
+#define INTMAX_C(__value) ((intmax_t)__value##LL)
/*
STDC(199901)