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

fminf determines the minimum of x and y.

IEC 60559 math library behavior

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

Portability

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