summaryrefslogtreecommitdiff
path: root/libm/w_fmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/w_fmod.c')
-rw-r--r--libm/w_fmod.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/w_fmod.c b/libm/w_fmod.c
index 5dad58187..b5cb9d2fc 100644
--- a/libm/w_fmod.c
+++ b/libm/w_fmod.c
@@ -23,7 +23,7 @@
double
fmod (double x, double y)
{
-#if __UCLIBC_HAS_FENV__
+#if defined(__UCLIBC_HAS_FENV__)
if (__builtin_expect (isinf (x) || y == 0.0, 0)
&& _LIB_VERSION != _IEEE_ && !isnan (y) && !isnan (x))
/* fmod(+-Inf,y) or fmod(x,0) */