summaryrefslogtreecommitdiff
path: root/libm/w_exp10f.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/w_exp10f.c')
-rw-r--r--libm/w_exp10f.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/w_exp10f.c b/libm/w_exp10f.c
index cd880e3e2..a89760bca 100644
--- a/libm/w_exp10f.c
+++ b/libm/w_exp10f.c
@@ -27,7 +27,7 @@
float
exp10f (float x)
{
-#if __UCLIBC_HAS_FENV__
+#if defined(__UCLIBC_HAS_FENV__)
float z = (float) __ieee754_exp10 ((double) x);
if (__builtin_expect (!isfinite (z) || z == 0, 0)
&& isfinite (x) && _LIB_VERSION != _IEEE_)