From dc382b5a91dec9f29e51b0bf10f4c4df2a276b9b Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 2 Jan 2018 17:50:31 +0100 Subject: quieten compiler warnings when __UCLIBC_HAS_FENV__ isn't defined --- libm/w_jnf.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libm/w_jnf.c') diff --git a/libm/w_jnf.c b/libm/w_jnf.c index e195216be..305afbfb6 100644 --- a/libm/w_jnf.c +++ b/libm/w_jnf.c @@ -18,7 +18,7 @@ #include #include "math_private.h" -#if __UCLIBC_HAS_FENV__ +#if defined(__UCLIBC_HAS_FENV__) #include #endif @@ -26,7 +26,7 @@ float jnf (int n, float x) { -#if __UCLIBC_HAS_FENV__ +#if defined(__UCLIBC_HAS_FENV__) if (__builtin_expect (isgreater (fabsf (x), (float) X_TLOSS), 0) && _LIB_VERSION != _IEEE_ && _LIB_VERSION != _POSIX_) /* jn(n,|x|>X_TLOSS) */ @@ -40,7 +40,7 @@ jnf (int n, float x) float ynf (int n, float x) { -#if __UCLIBC_HAS_FENV__ +#if defined(__UCLIBC_HAS_FENV__) if (__builtin_expect (islessequal (x, 0.0f) || isgreater (x, (float) X_TLOSS), 0) && _LIB_VERSION != _IEEE_) -- cgit v1.2.3