From 4d07e72514402f05528354524e36386ea94d4fdc Mon Sep 17 00:00:00 2001 From: Chris Sutcliffe Date: Fri, 24 Jul 2009 01:21:27 +0000 Subject: 2009-07-23 Jacky Lai * mingwex/math/fminf.c: switch to using __isnanf() as opposed to _isnan(). --- winsup/mingw/mingwex/math/fminf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'winsup/mingw/mingwex/math/fminf.c') diff --git a/winsup/mingw/mingwex/math/fminf.c b/winsup/mingw/mingwex/math/fminf.c index f3d7148..4b974ba 100644 --- a/winsup/mingw/mingwex/math/fminf.c +++ b/winsup/mingw/mingwex/math/fminf.c @@ -3,5 +3,5 @@ float fminf (float _x, float _y) { - return ((islessequal(_x, _y) || _isnan (_y)) ? _x : _y ); + return ((islessequal(_x, _y) || __isnanf (_y)) ? _x : _y ); } -- cgit v1.1