diff options
author | 1999-04-02 16:21:35 +0000 | |
---|---|---|
committer | 1999-04-02 16:21:35 +0000 | |
commit | 42fb8fa29028b5874cc4205a5051205a76714452 (patch) | |
tree | 4a4f9277ef092d6055d924e7eb53f028624b4564 /lib/libc/gen | |
parent | all .Nm macros should have an argument in SYNOPSIS; also misc cleanup (diff) | |
download | wireguard-openbsd-42fb8fa29028b5874cc4205a5051205a76714452.tar.xz wireguard-openbsd-42fb8fa29028b5874cc4205a5051205a76714452.zip |
.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 |