Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fminl.c « math « mingwex « mingw « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d8a3fea2c17fe33f8fc170d6bd9463cd1f02c453 (plain)
1
2
3
4
5
6
7
#include <math.h>

long double
fminl (long double _x, long double _y)
{
  return ((islessequal(_x, _y) || __isnanl (_y)) ? _x : _y );
}