2009-07-23 Jacky Lai <crazyjacky@users.sourceforge.net>

* mingwex/math/fminf.c: switch to using __isnanf() as opposed to _isnan().
This commit is contained in:
Chris Sutcliffe 2009-07-24 01:21:27 +00:00
parent f9415fedf8
commit 4d07e72514
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-07-23 Jacky Lai <crazyjacky@users.sourceforge.net>
* mingwex/math/fminf.c: switch to using __isnanf() as opposed to _isnan().
2009-07-18 Gregory McGarry <gregorymcgarry@users.sourceforge.net>
* include/inttypes.h include/math.h include/stdio.h include/stdlib.h

View File

@ -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 );
}