]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/lrint.3
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man3 / lrint.3
index 1d0d16137e79cf2a3072c23a2b3079e581922c2b..74b91af9c363b0fb4d4b2bba30fddcd9553098a0 100644 (file)
@@ -14,21 +14,21 @@ Math library
 .SH SYNOPSIS
 .nf
 .B #include <math.h>
-.PP
+.P
 .BI "long lrint(double " x );
 .BI "long lrintf(float " x );
 .BI "long lrintl(long double " x );
-.PP
+.P
 .BI "long long llrint(double " x );
 .BI "long long llrintf(float " x );
 .BI "long long llrintl(long double " x );
 .fi
-.PP
+.P
 .RS -4
 Feature Test Macro Requirements for glibc (see
 .BR feature_test_macros (7)):
 .RE
-.PP
+.P
 All functions shown above:
 .nf
     _ISOC99_SOURCE || _POSIX_C_SOURCE >= 200112L
@@ -37,7 +37,7 @@ All functions shown above:
 These functions round their argument to the nearest integer value,
 using the current rounding direction (see
 .BR fesetround (3)).
-.PP
+.P
 Note that unlike the
 .BR rint (3)
 family of functions,
@@ -45,7 +45,7 @@ the return type of these functions differs from
 that of their arguments.
 .SH RETURN VALUE
 These functions return the rounded integer value.
-.PP
+.P
 If
 .I x
 is a NaN or an infinity,
@@ -62,7 +62,7 @@ See
 .BR math_error (7)
 for information on how to determine whether an error has occurred
 when calling these functions.
-.PP
+.P
 The following errors can occur:
 .TP
 Domain error: \fIx\fP is a NaN or infinite, or the rounded value is too large
@@ -72,7 +72,7 @@ Domain error: \fIx\fP is a NaN or infinite, or the rounded value is too large
 An invalid floating-point exception
 .RB ( FE_INVALID )
 is raised.
-.PP
+.P
 These functions do not set
 .IR errno .
 .\" FIXME . Is it intentional that these functions do not set errno?