1FMAX(3) math routines FMAX(3)
23
4
NAME
6fmax, fmaxf, fmaxl - find maximum value
7
SYNOPSIS
9#include <math.h>
1011
double fmax(double x, double y);
12float fmaxf(float x, float y);
13long double fmaxl(long double x, long double y);
1415
Compile with -std=c99; link with -lm.
16
DESCRIPTION
18Find the larger value of x and y.
19
CONFORMING TO
21C99
22
SEE ALSO
24fmin(3)
2526
27
28
2002-07-28 FMAX(3)