diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2009-03-12 16:51:53 +0000 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-08-30 11:57:48 -0700 |
commit | ad8e1035c3feb1650640c2cfc995c1f5f917bbc7 (patch) | |
tree | a0c69831ad653d8e8b897187a7676a26f8fa0728 /libm/nan.c | |
parent | de60cf611b1b7dcad53f21728360dff1792ab4fc (diff) |
honour NO_LONG_DOUBLE_MATH
This fixes compilation errors on hosts that turn off long double support
for C99 like powerpc32.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libm/nan.c')
-rw-r--r-- | libm/nan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/nan.c b/libm/nan.c index ec221ea71..eee3b1cc4 100644 --- a/libm/nan.c +++ b/libm/nan.c @@ -45,7 +45,7 @@ float nanf (const char *tagp) } libm_hidden_def(nanf) -#if defined __UCLIBC_HAS_LONG_DOUBLE_MATH__ +#if defined __UCLIBC_HAS_LONG_DOUBLE_MATH__ && !defined __NO_LONG_DOUBLE_MATH libm_hidden_proto(nanl) long double nanl (const char *tagp) { |