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

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

long double
fmaxl (long double _x, long double  _y)
{
  return (( isgreaterequal(_x, _y) || __isnanl (_y)) ?  _x : _y );
}