summaryrefslogtreecommitdiffstats
path: root/man3/fmin.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/fmin.3')
-rw-r--r--man3/fmin.322
1 files changed, 22 insertions, 0 deletions
diff --git a/man3/fmin.3 b/man3/fmin.3
new file mode 100644
index 000000000..b82d3df77
--- /dev/null
+++ b/man3/fmin.3
@@ -0,0 +1,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)