#include <math.h>float fmaxf(float x, float y);
fmaxf determines the minimum of x and y.
fmaxf(NaN, y) is y. fmaxf(x, NaN) is x.
fmaxf conforms to ISO/IEC 9899:1999 (C99).