This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] math: fix isinf/isnan on SPU after move to math.h


Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
---
 newlib/libm/common/s_isinf.c | 2 ++
 newlib/libm/common/s_isnan.c | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/newlib/libm/common/s_isinf.c b/newlib/libm/common/s_isinf.c
index f22acb7..fe18e2a 100644
--- a/newlib/libm/common/s_isinf.c
+++ b/newlib/libm/common/s_isinf.c
@@ -13,6 +13,8 @@
 
 #ifndef _DOUBLE_IS_32BITS
 
+#undef isinf
+
 int
 _DEFUN (isinf, (x),
 	double x)
diff --git a/newlib/libm/common/s_isnan.c b/newlib/libm/common/s_isnan.c
index 64deacd..bc0a916 100644
--- a/newlib/libm/common/s_isnan.c
+++ b/newlib/libm/common/s_isnan.c
@@ -190,6 +190,8 @@ QUICKREF
 
 #ifndef _DOUBLE_IS_32BITS
 
+#undef isnan
+
 #ifdef __STDC__
 	int isnan(double x)
 #else
-- 
2.8.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]