diff options
Diffstat (limited to 'libm/w_coshf.c')
-rw-r--r-- | libm/w_coshf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/w_coshf.c b/libm/w_coshf.c index 940d77876..4707ad1c3 100644 --- a/libm/w_coshf.c +++ b/libm/w_coshf.c @@ -24,7 +24,7 @@ float coshf (float x) { -#if __UCLIBC_HAS_FENV__ +#if defined(__UCLIBC_HAS_FENV__) float z = (float) __ieee754_cosh ((double) x); if (__builtin_expect (!isfinite (z), 0) && isfinite (x) && _LIB_VERSION != _IEEE_) @@ -34,4 +34,4 @@ coshf (float x) #else return (float) __ieee754_cosh ((double) x); #endif -}
\ No newline at end of file +} |