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/math/_tgmath.h | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'src/math/_tgmath.h') 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 -- cgit v1.2.1