]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/nan.3
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man3 / nan.3
index 2879eabc649f8f07ff2bcb5fd1dd8f0f452574a6..f0e79b63deda7e153202b204cd036773afc079ee 100644 (file)
@@ -16,17 +16,17 @@ Math library
 .SH SYNOPSIS
 .nf
 .B #include <math.h>
-.PP
+.P
 .BI "double nan(const char *" tagp );
 .BI "float nanf(const char *" tagp );
 .BI "long double nanl(const char *" tagp );
 .fi
-.PP
+.P
 .RS -4
 Feature Test Macro Requirements for glibc (see
 .BR feature_test_macros (7)):
 .RE
-.PP
+.P
 .BR nan (),
 .BR nanf (),
 .BR nanl ():
@@ -39,17 +39,17 @@ These functions return a representation (determined by
 of a quiet NaN.
 If the implementation does not support
 quiet NaNs, these functions return zero.
-.PP
+.P
 The call
 .I nan("char\-sequence")
 is equivalent to:
-.PP
+.P
 .in +4n
 .EX
 strtod("NAN(char\-sequence)", NULL);
 .EE
 .in
-.PP
+.P
 Similarly, calls to
 .BR nanf ()
 and
@@ -58,7 +58,7 @@ are equivalent to analogous calls to
 .BR strtof (3)
 and
 .BR strtold (3).
-.PP
+.P
 The argument
 .I tagp
 is used in an unspecified manner.
@@ -84,7 +84,7 @@ T}    Thread safety   MT-Safe locale
 .TE
 .SH STANDARDS
 C11, POSIX.1-2008.
-.PP
+.P
 See also IEC 559 and the appendix with
 recommended functions in IEEE 754/IEEE 854.
 .SH HISTORY