FMAX(3) | Library Functions Manual | FMAX(3) |
double
fmax(double x, double y);
float
fmaxf(float x, float y);
long double
fmaxl(long double x, long double y);
double
fmin(double x, double y);
float
fminf(float x, float y);
long double
fminl(long double x, long double y);
+0.0
as being larger than -0.0
. If one argument is an NaN, then the other argument is returned. If both arguments are NaNs, then the result is an NaN. These routines do not raise any floating-point exceptions.June 29, 2004 | NetBSD 7.2 |