blob: c51e16d86a0a5878fde59eb4299d1238edd24946 [file] [log] [blame]
#include <math.h>
float
fmaxf (float _x, float _y)
{
return (( isgreaterequal(_x, _y) || __isnanf (_y)) ? _x : _y );
}