OSDN Git Service

2009-07-23 Jacky Lai <crazyjacky@users.sourceforge.net>
authorironhead <ironhead>
Fri, 24 Jul 2009 01:21:27 +0000 (01:21 +0000)
committerironhead <ironhead>
Fri, 24 Jul 2009 01:21:27 +0000 (01:21 +0000)
        * mingwex/math/fminf.c: switch to using __isnanf() as opposed to _isnan().

winsup/mingw/ChangeLog
winsup/mingw/mingwex/math/fminf.c

index 08cc018..4cd26f9 100644 (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
index f3d7148..4b974ba 100644 (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 );
 }