diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-04-02 16:21:39 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-04-02 16:21:39 +0000 |
commit | c3c9588319a3cfd2d8d12bea822a08ced6872996 (patch) | |
tree | 2008a8fc7130cd8682e6326c0e43ddb90e0b0dc2 /lib/libc/gen | |
parent | 17f3467d46dd17b488273ab1b61940b0878063b5 (diff) |
.Pp macros do not belong immiedately after .Sh section header lines
Diffstat (limited to 'lib/libc/gen')
-rw-r--r-- | lib/libc/gen/daemon.3 | 12 | ||||
-rw-r--r-- | lib/libc/gen/sysconf.3 | 3 |
2 files changed, 7 insertions, 8 deletions
diff --git a/lib/libc/gen/daemon.3 b/lib/libc/gen/daemon.3 index f8fa711adb2..010b555c0e2 100644 --- a/lib/libc/gen/daemon.3 +++ b/lib/libc/gen/daemon.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: daemon.3,v 1.4 1999/02/16 16:49:20 deraadt Exp $ +.\" $OpenBSD: daemon.3,v 1.5 1999/04/02 16:21:35 aaron Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -42,7 +42,6 @@ .Ft int .Fn daemon "int nochdir" "int noclose" .Sh DESCRIPTION -.Pp The .Fn daemon function is for programs wishing to detach themselves from the @@ -52,14 +51,15 @@ Unless the argument .Fa nochdir is non-zero, .Fn daemon -changes the current working directory to the root (``/''). +changes the current working directory to the root +.Pq Pa / . .Pp Unless the argument .Fa noclose is non-zero, .Fn daemon -will redirect standard input, standard output and standard error -to ``/dev/null''. +will redirect standard input, standard output and standard error to +.Pa /dev/null . .Sh ERRORS The function .Fn daemon @@ -70,8 +70,8 @@ for any of the errors specified for the library functions and .Xr setsid 2 . .Sh SEE ALSO +.Xr fork 2 , .Xr setsid 2 -.Xr fork 2 .Sh HISTORY The .Fn daemon diff --git a/lib/libc/gen/sysconf.3 b/lib/libc/gen/sysconf.3 index 118e0290b39..fcaf4b2be28 100644 --- a/lib/libc/gen/sysconf.3 +++ b/lib/libc/gen/sysconf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sysconf.3,v 1.5 1998/06/15 17:54:59 mickey Exp $ +.\" $OpenBSD: sysconf.3,v 1.6 1999/04/02 16:21:35 aaron Exp $ .\" .\" Copyright (c) 1993 .\" The Regents of the University of California. All rights reserved. @@ -42,7 +42,6 @@ .Ft long .Fn sysconf "int name" .Sh DESCRIPTION -.Pp This interface is defined by .St -p1003.1-88 . A far more complete interface is available using |