Synopsis
#include <math.h>
float fmaxf(float x, float y);
Description

fmaxf determines the minimum of x and y.

IEC 60559 math library behavior

fmaxf(NaN, y) is y.
fmaxf(x, NaN) is x.

Portability

fmaxf conforms to ISO/IEC 9899:1999 (C99).