summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/isnan.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/gen/isnan.c')
-rw-r--r--lib/libc/gen/isnan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/isnan.c b/lib/libc/gen/isnan.c
index 0eb7372..72c2868 100644
--- a/lib/libc/gen/isnan.c
+++ b/lib/libc/gen/isnan.c
@@ -40,7 +40,7 @@
* time, when calling both functions.
*/
-#ifdef __PIC__
+#ifdef PIC
__weak_reference(__isnan, isnan);
__weak_reference(__isnanf, isnanf);
@@ -61,4 +61,4 @@ __isnanf(float f)
u.f = f;
return (u.bits.exp == 255 && u.bits.man != 0);
}
-#endif /* __PIC__ */
+#endif /* PIC */
OpenPOWER on IntegriCloud