diff options
Diffstat (limited to 'libm/w_atanhf.c')
-rw-r--r-- | libm/w_atanhf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/w_atanhf.c b/libm/w_atanhf.c index b787c2cd7..c68c54df4 100644 --- a/libm/w_atanhf.c +++ b/libm/w_atanhf.c @@ -24,7 +24,7 @@ float atanhf (float x) { -#if __UCLIBC_HAS_FENV__ +#if defined(__UCLIBC_HAS_FENV__) if (__builtin_expect (isgreaterequal (fabsf (x), 1.0f), 0) && _LIB_VERSION != _IEEE_) return __kernel_standard_f (x, x, |