kolibrios/programs/develop/libraries/newlib/math/fmaxl.c

8 lines
149 B
C
Raw Normal View History

#include <math.h>
long double
fmaxl (long double _x, long double _y)
{
return (( isgreaterequal(_x, _y) || __isnanl (_y)) ? _x : _y );
}