1FMIN(3) Linux Programmer's Manual FMIN(3)
2
3
4
6 fmin, fminf, fminl - determine minimum of two floating-point numbers
7
9 #include <math.h>
10
11 double fmin(double x, double y);
12 float fminf(float x, float y);
13 long double fminl(long double x, long double y);
14
15 Link with -lm.
16
17 Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
18
19 fmin(), fminf(), fminl(): _XOPEN_SOURCE >= 600 || _ISOC99_SOURCE; or
20 cc -std=c99
21
23 These functions the lesser value of x and y.
24
26 These functions return the minimum of x and y.
27
28 If one argument is a NaN, the other argument is returned.
29
30 If both arguments are NaN, a NaN is returned.
31
33 No errors occur.
34
36 These functions first appeared in glibc in version 2.1.
37
39 C99, POSIX.1-2001.
40
42 fmax(3)
43
45 This page is part of release 3.22 of the Linux man-pages project. A
46 description of the project, and information about reporting bugs, can
47 be found at http://www.kernel.org/doc/man-pages/.
48
49
50
51 2008-08-11 FMIN(3)