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/INT16_C.c | 3 ++- src/stdint/INT32_C.c | 3 ++- src/stdint/INT64_C.c | 3 ++- src/stdint/INT8_C.c | 3 ++- src/stdint/INTMAX_C.c | 3 ++- src/stdint/UINT16_C.c | 3 ++- src/stdint/UINT32_C.c | 3 ++- src/stdint/UINT64_C.c | 3 ++- src/stdint/UINT8_C.c | 3 ++- src/stdint/UINTMAX_C.c | 3 ++- 10 files changed, 20 insertions(+), 10 deletions(-) (limited to 'src/stdint') diff --git a/src/stdint/INT16_C.c b/src/stdint/INT16_C.c index 59f6e911..ebad0207 100644 --- a/src/stdint/INT16_C.c +++ b/src/stdint/INT16_C.c @@ -1,5 +1,6 @@ #include -#define INT16_C(value) ((int_least16_t)value) + +#define INT16_C(__value) ((int_least16_t)__value) /* STDC(199901) diff --git a/src/stdint/INT32_C.c b/src/stdint/INT32_C.c index fca867f9..9e052968 100644 --- a/src/stdint/INT32_C.c +++ b/src/stdint/INT32_C.c @@ -1,5 +1,6 @@ #include -#define INT32_C(value) ((int_least32_t)value##L) + +#define INT32_C(__value) ((int_least32_t)__value##L) /* STDC(199901) diff --git a/src/stdint/INT64_C.c b/src/stdint/INT64_C.c index ee8fdafa..c62410d6 100644 --- a/src/stdint/INT64_C.c +++ b/src/stdint/INT64_C.c @@ -1,5 +1,6 @@ #include -#define INT64_C(value) ((int_least64_t)value##LL) + +#define INT64_C(__value) ((int_least64_t)__value##LL) /* STDC(199901) 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) 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 -#define INTMAX_C(value) ((intmax_t)value##LL) + +#define INTMAX_C(__value) ((intmax_t)__value##LL) /* STDC(199901) diff --git a/src/stdint/UINT16_C.c b/src/stdint/UINT16_C.c index dbb276a6..afbcc96c 100644 --- a/src/stdint/UINT16_C.c +++ b/src/stdint/UINT16_C.c @@ -1,5 +1,6 @@ #include -#define UINT16_C(value) ((uint_least16_t)value) + +#define UINT16_C(__value) ((uint_least16_t)__value) /* STDC(199901) diff --git a/src/stdint/UINT32_C.c b/src/stdint/UINT32_C.c index 05583780..fd310c88 100644 --- a/src/stdint/UINT32_C.c +++ b/src/stdint/UINT32_C.c @@ -1,5 +1,6 @@ #include -#define UINT32_C(value) ((uint_least32_t)value##U) + +#define UINT32_C(__value) ((uint_least32_t)__value##U) /* STDC(199901) diff --git a/src/stdint/UINT64_C.c b/src/stdint/UINT64_C.c index ce05a6bc..4d084517 100644 --- a/src/stdint/UINT64_C.c +++ b/src/stdint/UINT64_C.c @@ -1,5 +1,6 @@ #include -#define UINT64_C(value) ((uint_least32_t)value##ULL) + +#define UINT64_C(__value) ((uint_least32_t)__value##ULL) /* STDC(199901) diff --git a/src/stdint/UINT8_C.c b/src/stdint/UINT8_C.c index 93e7ccc5..5d269bb7 100644 --- a/src/stdint/UINT8_C.c +++ b/src/stdint/UINT8_C.c @@ -1,5 +1,6 @@ #include -#define UINT8_C(value) ((uint_least8_t)value) + +#define UINT8_C(__value) ((uint_least8_t)__value) /* STDC(199901) 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 -#define UINTMAX_C(value) ((uintmax_t)value##ULL) + +#define UINTMAX_C(__value) ((uintmax_t)__value##ULL) /* STDC(199901) -- cgit v1.2.1