diff options
Diffstat (limited to 'math/test-tgmath-ret.c')
-rw-r--r-- | math/test-tgmath-ret.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/math/test-tgmath-ret.c b/math/test-tgmath-ret.c index 89c7f53..84f81b4 100644 --- a/math/test-tgmath-ret.c +++ b/math/test-tgmath-ret.c @@ -47,12 +47,8 @@ our_error (const char *c) CHECK_RET_CONST_TYPE (func, rettype, fx, float, ## __VA_ARGS__) #define CHECK_RET_CONST_DOUBLE(func, rettype, ...) \ CHECK_RET_CONST_TYPE (func, rettype, dx, double, ## __VA_ARGS__) -#ifdef NO_LONG_DOUBLE -# define CHECK_RET_CONST_LDOUBLE(func, rettype, ...) -#else -# define CHECK_RET_CONST_LDOUBLE(func, rettype, ...) \ +#define CHECK_RET_CONST_LDOUBLE(func, rettype, ...) \ CHECK_RET_CONST_TYPE (func, rettype, lx, long double, ## __VA_ARGS__) -#endif #define CHECK_RET_CONST(func, rettype, ...) \ static void \ |