summaryrefslogtreecommitdiffstats
path: root/lib/msun/src
diff options
context:
space:
mode:
authoremaste <emaste@FreeBSD.org>2014-11-25 03:50:31 +0000
committeremaste <emaste@FreeBSD.org>2014-11-25 03:50:31 +0000
commitfda27c9937b724b3c3e24266d58c4be4d1839e7f (patch)
tree8af8a3fb8f37ea396b60dd6e474d26d3b108cc1a /lib/msun/src
parentd375864ce9ed7583a0bf26a4f4933a26c49ecd60 (diff)
downloadFreeBSD-src-fda27c9937b724b3c3e24266d58c4be4d1839e7f.zip
FreeBSD-src-fda27c9937b724b3c3e24266d58c4be4d1839e7f.tar.gz
Revert r274772: it is not valid on MIPS
Reported by: sbruno
Diffstat (limited to 'lib/msun/src')
-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