summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_isnan.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_isnan.c')
-rw-r--r--lib/msun/src/s_isnan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/msun/src/s_isnan.c b/lib/msun/src/s_isnan.c
index eabae9d..a54ded3 100644
--- a/lib/msun/src/s_isnan.c
+++ b/lib/msun/src/s_isnan.c
@@ -31,7 +31,7 @@
#include "fpmath.h"
/* Provided by libc.so */
-#ifndef __PIC__
+#ifndef PIC
#undef isnan
int
isnan(double d)
@@ -41,7 +41,7 @@ isnan(double d)
u.d = d;
return (u.bits.exp == 2047 && (u.bits.manl != 0 || u.bits.manh != 0));
}
-#endif /* !__PIC__ */
+#endif /* !PIC */
int
__isnanf(float f)
OpenPOWER on IntegriCloud