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