blob: 35e6989b024b3d26e56153832f4849792c4fdd2e [file] [log] [blame]
.\" 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 );
.br
.BI "float fminf(float " x ", float " y );
.br
.BI "long double fminl(long double " x ", long double " y );
.sp
Compile with \-std=c99; link with \-lm.
.SH DESCRIPTION
Find the lesser value of x and y.
.SH "CONFORMING TO"
C99
.SH "SEE ALSO"
.BR fmax (3)