NAME
fmax, fmaxf, fmaxl - find maximum value
SYNOPSIS
#include <math.h>
I double fmax(double x , double y );
I float fmaxf(float x , float y );
I long double fmaxl(long double x , long double y );
Compile with -std=c99; link with -lm.
DESCRIPTION
Find the larger value of x and y.
CONFORMING TO
C99
SEE ALSO