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