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

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