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

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

double
fmax (double _x, double _y)
{
   return ( isgreaterequal (_x, _y)|| __isnan (_y) ?  _x : _y );
}