summaryrefslogtreecommitdiff
path: root/libm/w_atan2l.c
diff options
context:
space:
mode:
Diffstat (limited to 'libm/w_atan2l.c')
-rw-r--r--libm/w_atan2l.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libm/w_atan2l.c b/libm/w_atan2l.c
index 314e72249..abf3dce5f 100644
--- a/libm/w_atan2l.c
+++ b/libm/w_atan2l.c
@@ -18,7 +18,7 @@
#include <math.h>
#include "math_private.h"
-#if __UCLIBC_HAS_FENV__
+#if defined(__UCLIBC_HAS_FENV__)
#include <errno.h>
#endif
@@ -27,7 +27,7 @@
long double
atan2l (long double y, long double x)
{
-# if __UCLIBC_HAS_FENV__
+# if defined(__UCLIBC_HAS_FENV__)
long double z;
if (__builtin_expect (x == 0.0L && y == 0.0L, 0) && _LIB_VERSION == _SVID_)