diff options
| author | Jakob Kaivo <jkk@ung.org> | 2019-03-06 19:56:37 -0500 |
|---|---|---|
| committer | Jakob Kaivo <jkk@ung.org> | 2019-03-06 19:56:37 -0500 |
| commit | 85f8cbf3d96d1b1dc0127398b762d58676d4f4f4 (patch) | |
| tree | 98a5ec2dd988d53370ed4bd8db7af1c133c535fb /src/stdint/INTMAX_C.c | |
| parent | 4dd73957883dd09ac0e7d7de4974e3696298b0c0 (diff) | |
prefix arguments with __
Diffstat (limited to 'src/stdint/INTMAX_C.c')
| -rw-r--r-- | src/stdint/INTMAX_C.c | 3 |
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) |
