]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3type/void.3type
man*/: srcfix (Use .P instead of .PP or .LP)
[thirdparty/man-pages.git] / man3type / void.3type
index c8a638a783bb80ad305b8633b37b01c0bc3ccc2d..91d458ff72a2c77db2aa8fcfa634275bcd8d892f 100644 (file)
@@ -20,7 +20,7 @@ including pointers to functions,
 may be converted to a pointer to
 .I void
 and back.
-.PP
+.P
 Conversions from and to any other pointer type are done implicitly,
 not requiring casts at all.
 Note that this feature prevents any kind of type checking:
@@ -28,13 +28,13 @@ the programmer should be careful not to convert a
 .I void *
 value to a type incompatible to that of the underlying data,
 because that would result in undefined behavior.
-.PP
+.P
 This type is useful in function parameters and return value
 to allow passing values of any type.
 The function will typically use some mechanism to know
 the real type of the data being passed via a pointer to
 .IR void .
-.PP
+.P
 A value of this type can't be dereferenced,
 as it would give a value of type
 .IR void ,