summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/fminf.c
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/mingw/mingwex/math/fminf.c')
-rw-r--r--winsup/mingw/mingwex/math/fminf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/mingw/mingwex/math/fminf.c b/winsup/mingw/mingwex/math/fminf.c
index f3d71480d..4b974ba01 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 );
}