diff options
author | Joseph Myers <joseph@codesourcery.com> | 2013-05-18 12:12:38 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2013-05-18 12:12:38 +0000 |
commit | 2ee094ff7524637304a00fcd25e1d3c9939a1fe5 (patch) | |
tree | be4af3670613bc6847b71d53c44ee09b099b3f09 /math/complex.h | |
parent | 3779b5b64a7fd0366d66c76992296fa2cdd2bbf6 (diff) | |
download | glibc-2ee094ff7524637304a00fcd25e1d3c9939a1fe5.tar glibc-2ee094ff7524637304a00fcd25e1d3c9939a1fe5.tar.gz glibc-2ee094ff7524637304a00fcd25e1d3c9939a1fe5.tar.bz2 glibc-2ee094ff7524637304a00fcd25e1d3c9939a1fe5.zip |
Don't disable CMPLXL macro for __NO_LONG_DOUBLE_MATH (bug 15488).
Diffstat (limited to 'math/complex.h')
-rw-r--r-- | math/complex.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/math/complex.h b/math/complex.h index 5bdcc93f9f..82c7962feb 100644 --- a/math/complex.h +++ b/math/complex.h @@ -52,9 +52,7 @@ __BEGIN_DECLS /* Macros to expand into expression of specified complex type. */ # define CMPLX(x, y) __builtin_complex ((double) (x), (double) (y)) # define CMPLXF(x, y) __builtin_complex ((float) (x), (float) (y)) -# ifndef __NO_LONG_DOUBLE_MATH -# define CMPLXL(x, y) __builtin_complex ((long double) (x), (long double) (y)) -# endif +# define CMPLXL(x, y) __builtin_complex ((long double) (x), (long double) (y)) #endif /* The file <bits/cmathcalls.h> contains the prototypes for all the |