summaryrefslogtreecommitdiffstats
path: root/winsup/mingw/mingwex/math/fminf.c
blob: 4b974ba0180d7378fe636dbbe340e7f4c3c7482e (plain)
1
2
3
4
5
6
7
#include <math.h>

float
fminf (float _x, float _y)
{
  return ((islessequal(_x, _y) || __isnanf (_y)) ? _x : _y );
}