summaryrefslogtreecommitdiff
path: root/src/math/_tgmath.h
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/math/_tgmath.h
parent4dd73957883dd09ac0e7d7de4974e3696298b0c0 (diff)
prefix arguments with __
Diffstat (limited to 'src/math/_tgmath.h')
-rw-r--r--src/math/_tgmath.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/math/_tgmath.h b/src/math/_tgmath.h
index fa7ce4b4..950fbdee 100644
--- a/src/math/_tgmath.h
+++ b/src/math/_tgmath.h
@@ -5,20 +5,20 @@
#ifdef TGSOURCE
# if (defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L)
-# define TGCMPLX(x,y) CMPLXF(x,y)
-# define TGFN(x) x##f
-# define TYPE float
-# define TGHUGE HUGE_VALF
+# define TGCMPLX(__x, __y) CMPLXF(__x, __y)
+# define TGFN(__x) __x##f
+# define TYPE float
+# define TGHUGE HUGE_VALF
# include TGSOURCE
# undef TGCMPLX
# undef TGFN
# undef TYPE
# undef TGHUGE
-# define TGCMPLX(x,y) CMPLXL(x,y)
-# define TGFN(x) x##l
-# define TYPE long double
-# define TGHUGE HUGE_VALL
+# define TGCMPLX(__x, __y) CMPLXL(__x, __y)
+# define TGFN(__x) __x##l
+# define TYPE long double
+# define TGHUGE HUGE_VALL
# include TGSOURCE
# undef TGCMPLX
# undef TGFN
@@ -28,9 +28,9 @@
#endif
-#define TGCMPLX(x,y) CMPLX(x,y)
-#define TGFN(x) x
-#define TYPE double
-#define TGHUGE HUGE_VAL
+#define TGCMPLX(__x, __y) CMPLX(__x, __y)
+#define TGFN(__x) __x
+#define TYPE double
+#define TGHUGE HUGE_VAL
#endif