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:
parent
f9415fedf8
commit
4d07e72514
|
@ -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
|
||||
|
|
|
@ -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 );
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue