summaryrefslogtreecommitdiff
path: root/src/stdint
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
parent4dd73957883dd09ac0e7d7de4974e3696298b0c0 (diff)
prefix arguments with __
Diffstat (limited to 'src/stdint')
-rw-r--r--src/stdint/INT16_C.c3
-rw-r--r--src/stdint/INT32_C.c3
-rw-r--r--src/stdint/INT64_C.c3
-rw-r--r--src/stdint/INT8_C.c3
-rw-r--r--src/stdint/INTMAX_C.c3
-rw-r--r--src/stdint/UINT16_C.c3
-rw-r--r--src/stdint/UINT32_C.c3
-rw-r--r--src/stdint/UINT64_C.c3
-rw-r--r--src/stdint/UINT8_C.c3
-rw-r--r--src/stdint/UINTMAX_C.c3
10 files changed, 20 insertions, 10 deletions
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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#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 <stdint.h>
-#define UINTMAX_C(value) ((uintmax_t)value##ULL)
+
+#define UINTMAX_C(__value) ((uintmax_t)__value##ULL)
/*
STDC(199901)