From: jjohnstn Date: Tue, 7 Mar 2006 22:14:04 +0000 (+0000) Subject: 2006-03-07 Jeff Johnston X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=81025e3efd67e02d25e9ecacc03caf370c129649;p=pf3gnuchains%2Fpf3gnuchains3x.git 2006-03-07 Jeff Johnston * libm/common/sf_isinf.c[_DOUBLE_IS_32BITS]: Undef isinf. * libm/common/sf_isnan.c[_DOUBLE_IS_32BITS]: Undef isnan. --- diff --git a/newlib/ChangeLog b/newlib/ChangeLog index d1da05fe5b..5b7f21b5df 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,3 +1,8 @@ +2006-03-07 Jeff Johnston + + * libm/common/sf_isinf.c[_DOUBLE_IS_32BITS]: Undef isinf. + * libm/common/sf_isnan.c[_DOUBLE_IS_32BITS]: Undef isnan. + 2006-03-02 Jeff Johnston * libm/math/math.tex: Fix reference to sisnan.def which diff --git a/newlib/libm/common/sf_isinf.c b/newlib/libm/common/sf_isinf.c index 9ee60c0625..74ba4edf7c 100644 --- a/newlib/libm/common/sf_isinf.c +++ b/newlib/libm/common/sf_isinf.c @@ -19,6 +19,8 @@ _DEFUN (isinff, (x), #ifdef _DOUBLE_IS_32BITS +#undef isinf + int _DEFUN (isinf, (x), double x) diff --git a/newlib/libm/common/sf_isnan.c b/newlib/libm/common/sf_isnan.c index e010051336..befc3b2b21 100644 --- a/newlib/libm/common/sf_isnan.c +++ b/newlib/libm/common/sf_isnan.c @@ -32,6 +32,8 @@ _DEFUN (isnanf, (x), #ifdef _DOUBLE_IS_32BITS +#undef isnan + int _DEFUN (isnan, (x), double x)