From 85f8cbf3d96d1b1dc0127398b762d58676d4f4f4 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Wed, 6 Mar 2019 19:56:37 -0500 Subject: prefix arguments with __ --- src/stdint/INT8_C.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/stdint/INT8_C.c') diff --git a/src/stdint/INT8_C.c b/src/stdint/INT8_C.c index 58135cb6..0c7f1550 100644 --- a/src/stdint/INT8_C.c +++ b/src/stdint/INT8_C.c @@ -1,5 +1,6 @@ #include -#define INT8_C(value) ((int_least8_t)value) + +#define INT8_C(__value) ((int_least8_t)__value) /* STDC(199901) -- cgit v1.2.1