]> pd.if.org Git - pdclib.old/blobdiff - man3/exit.3
Remove empty lines from manpages (lint errors)
[pdclib.old] / man3 / exit.3
index ac8ae99403bcf842a0718c77db5e7b94c5613ec3..4d9860ee7abf5c3c04b139cc1c67fe8f2e0a9350 100644 (file)
@@ -4,17 +4,17 @@
 .Dd\r
 .Dt exit 3\r
 .Os\r
-\r
+.\"\r
 .Sh NAME\r
 .Nm exit\r
 .Nd terminates the process\r
-\r
+.\"\r
 .Sh SYNOPSIS\r
 .In stdlib.h\r
 .Fn "noreturn void exit" "int status"\r
 .Fn "noreturn void quick_exit" "int status"\r
 .Fn "noreturn void _Exit" "int exitcode"\r
-\r
+.\"\r
 .Sh DESCRIPTION\r
 Calling any of these three functions terminates the current process, returning \r
 the exit code passed as a parameter. The interpretation of the exit code is \r
@@ -23,7 +23,7 @@ undefined, except that 0 or
 shall indicate successful completion and\r
 .Dv EXIT_FAILURE\r
 shall indicate a non-successful completion.\r
-\r
+.\"\r
 .Pp\r
 .Fn exit\r
 first destroys all objects with C++ thread local storage duration (the C \r
@@ -43,7 +43,7 @@ particular that functions registered with
 are\r
 .Sy not\r
 called.\r
-\r
+.\"\r
 .Pp\r
 .Fn quick_exit\r
 invokes any functions registered with\r
@@ -53,7 +53,7 @@ environment by calling
 .Fn _Exit .\r
 No signal handlers are called, nor are any functions registered with\r
 .Fn atexit .\r
-\r
+.\"\r
 .Pp\r
 .Fn _Exit\r
 returns control to the controlling environment without invoking any functions\r
@@ -64,7 +64,7 @@ any signal handlers, or the destructors of any thread local objects or C++
 objects of static storage duration. Whether or not any open \r
 .Vt FILE\r
 streams with unwritten data are flushed or not is undefined.\r
-\r
+.\"\r
 .Pp\r
 The result of aborting a call to \r
 .Fn exit\r
@@ -79,7 +79,7 @@ or
 should throw, \r
 .Fn std::terminate\r
 is invoked.\r
-\r
+.\"\r
 .Pp\r
 Undefined behaviour results if, while a call to\r
 .Fn exit\r
@@ -90,7 +90,7 @@ is in progress, a call to
 or\r
 .Fn quick_exit\r
 is made. \r
-\r
+.\"\r
 .Sh IMPLEMENTATION NOTES\r
 PDCLib implements the process of flushing streams in\r
 .Fn _Exit ,\r
@@ -99,12 +99,12 @@ and therefore
 calls it after all\r
 .Fn atexit\r
 handlers have been invoked.\r
-\r
+.\"\r
 .Sh SEE ALSO\r
 .Xr abort 3\r
 .Xr atexit 3\r
 .Xr at_quick_exit 3\r
-\r
+.\"\r
 .Sh STANDARDS\r
 .Fn exit\r
 is first defined in\r