diff options
Diffstat (limited to 'lib/libc/gen/isnan.c')
-rw-r--r-- | lib/libc/gen/isnan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/gen/isnan.c b/lib/libc/gen/isnan.c index 72c2868..0eb7372 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__ */ |