]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/log2.3
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man3 / log2.3
index 29c2e0a8f50c164a7137c137469a966ae4e4908d..62103fe46cc85df29efb71817270c5b93c9320e5 100644 (file)
@@ -23,17 +23,17 @@ Math library
 .SH SYNOPSIS
 .nf
 .B #include <math.h>
-.PP
+.P
 .BI "double log2(double " x );
 .BI "float log2f(float " x );
 .BI "long double log2l(long double " x );
 .fi
-.PP
+.P
 .RS -4
 Feature Test Macro Requirements for glibc (see
 .BR feature_test_macros (7)):
 .RE
-.PP
+.P
 .BR log2 (),
 .BR log2f (),
 .BR log2l ():
@@ -46,7 +46,7 @@ These functions return the base 2 logarithm of
 .SH RETURN VALUE
 On success, these functions return the base 2 logarithm of
 .IR x .
-.PP
+.P
 For special cases, including where
 .I x
 is 0, 1, negative, infinity, or NaN, see
@@ -56,7 +56,7 @@ See
 .BR math_error (7)
 for information on how to determine whether an error has occurred
 when calling these functions.
-.PP
+.P
 For a discussion of the errors that can occur for these functions, see
 .BR log (3).
 .SH ATTRIBUTES
@@ -80,7 +80,7 @@ C11, POSIX.1-2008.
 .SH HISTORY
 glibc 2.1.
 C99, POSIX.1-2001.
-.PP
+.P
 The variant returning
 .I double
 also conforms to