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