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