summaryrefslogtreecommitdiffstats
path: root/man3/fmin.3
blob: b82d3df772a14338b12649b1a854a72ffb226a92 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\"
.TH FMIN 3 2002-07-28 "" "math routines"
.SH NAME
fmin, fminf, fminl \- find minimum value
.SH SYNOPSIS
.B #include <math.h>
.sp
.BI "double fmin(double " x ", double " y );
.sp
.BI "float fminf(float " x ", float " y );
.sp
.BI "long double fminl(long double " x ", long double " y );
.sp
Link with \-lm.
.SH DESCRIPTION
Find the lesser value of x and y.
.SH "CONFORMING TO"
C99
.SH "SEE ALSO"
.BR fmax (3)