]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/floor.3
fanotify_init.2, fanotify.7: Document FAN_REPORT_TID
[thirdparty/man-pages.git] / man3 / floor.3
index 77ac37df65a3fba469e71470906524205a276358..6c6ff3d87f6e2dcc858d32c33a434407fc3794ec 100644 (file)
@@ -24,7 +24,7 @@
 .\" the source, must acknowledge the copyright and authors of this work.
 .\" %%%LICENSE_END
 .\"
-.TH FLOOR 3  2016-03-15 "" "Linux Programmer's Manual"
+.TH FLOOR 3  2017-09-15 "" "Linux Programmer's Manual"
 .SH NAME
 floor, floorf, floorl \- largest integral value not greater than argument
 .SH SYNOPSIS
@@ -32,9 +32,7 @@ floor, floorf, floorl \- largest integral value not greater than argument
 .B #include <math.h>
 .PP
 .BI "double floor(double " x );
-.br
 .BI "float floorf(float " x );
-.br
 .BI "long double floorl(long double " x );
 .fi
 .PP
@@ -57,7 +55,7 @@ _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L
 .SH DESCRIPTION
 These functions return the largest integral value that is not greater than
 .IR x .
-
+.PP
 For example,
 .IR floor(0.5)
 is 0.0, and
@@ -66,7 +64,7 @@ is \-1.0.
 .SH RETURN VALUE
 These functions return the floor of
 .IR x .
-
+.PP
 If
 .I x
 is integral, +0, \-0, NaN, or an infinity,
@@ -91,7 +89,7 @@ T}    Thread safety   MT-Safe
 .TE
 .SH CONFORMING TO
 C99, POSIX.1-2001, POSIX.1-2008.
-
+.PP
 The variant returning
 .I double
 also conforms to