summaryrefslogtreecommitdiffstats
path: root/lib/libc
diff options
context:
space:
mode:
authoraaron <aaron@openbsd.org>2000-04-15 02:15:09 +0000
committeraaron <aaron@openbsd.org>2000-04-15 02:15:09 +0000
commitf885a5274d3b804af634a3a47ca4a09d1818545f (patch)
tree11451f8206ded0483db39bb0d31df6a89c1545fc /lib/libc
parentmisc cleanup (diff)
downloadwireguard-openbsd-f885a5274d3b804af634a3a47ca4a09d1818545f.tar.xz
wireguard-openbsd-f885a5274d3b804af634a3a47ca4a09d1818545f.zip
Mostly punctuation fixes.
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/crypt/arc4random.37
-rw-r--r--lib/libc/crypt/blowfish.37
-rw-r--r--lib/libc/crypt/crypt.35
-rw-r--r--lib/libc/gen/directory.34
-rw-r--r--lib/libc/gen/getpwent.34
-rw-r--r--lib/libc/gen/glob.316
-rw-r--r--lib/libc/net/gethostbyname.34
-rw-r--r--lib/libc/net/inet6_option_space.38
-rw-r--r--lib/libc/regex/regex.34
-rw-r--r--lib/libc/rpc/rpc.35
-rw-r--r--lib/libc/stdio/fseek.36
-rw-r--r--lib/libc/stdio/printf.34
-rw-r--r--lib/libc/stdio/stdio.34
-rw-r--r--lib/libc/sys/brk.24
-rw-r--r--lib/libc/sys/clock_gettime.24
-rw-r--r--lib/libc/sys/fhopen.24
-rw-r--r--lib/libc/sys/getsockopt.26
-rw-r--r--lib/libc/sys/gettimeofday.24
-rw-r--r--lib/libc/sys/recv.24
-rw-r--r--lib/libc/sys/select.26
-rw-r--r--lib/libc/sys/shmat.25
-rw-r--r--lib/libc/termios/tcsendbreak.36
-rw-r--r--lib/libc/termios/tcsetattr.34
-rw-r--r--lib/libc/time/ctime.35
24 files changed, 65 insertions, 65 deletions
diff --git a/lib/libc/crypt/arc4random.3 b/lib/libc/crypt/arc4random.3
index 1c3ddcb1b11..f4116a1e826 100644
--- a/lib/libc/crypt/arc4random.3
+++ b/lib/libc/crypt/arc4random.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: arc4random.3,v 1.12 2000/04/02 17:59:04 millert Exp $
+.\" $OpenBSD: arc4random.3,v 1.13 2000/04/15 02:15:22 aaron Exp $
+.\"
.\" Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
.\" All rights reserved.
.\"
@@ -33,8 +34,8 @@
.Dt ARC4RANDOM 3
.Os
.Sh NAME
-.Nm arc4random,
-.Nm arc4random_stir,
+.Nm arc4random ,
+.Nm arc4random_stir ,
.Nm arc4random_addrandom
.Nd arc4 random number generator
.Sh SYNOPSIS
diff --git a/lib/libc/crypt/blowfish.3 b/lib/libc/crypt/blowfish.3
index 41dfb59bc9b..b5fdae92b19 100644
--- a/lib/libc/crypt/blowfish.3
+++ b/lib/libc/crypt/blowfish.3
@@ -1,4 +1,5 @@
-.\" $OpenBSD: blowfish.3,v 1.7 2000/03/14 21:31:44 aaron Exp $
+.\" $OpenBSD: blowfish.3,v 1.8 2000/04/15 02:15:22 aaron Exp $
+.\"
.\" Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de>
.\" All rights reserved.
.\"
@@ -33,8 +34,8 @@
.Dt BLOWFISH 3
.Os
.Sh NAME
-.Nm blf_key,
-.Nm blf_enc,
+.Nm blf_key ,
+.Nm blf_enc ,
.Nm blf_dec
.Nd Blowfish encryption
.Sh SYNOPSIS
diff --git a/lib/libc/crypt/crypt.3 b/lib/libc/crypt/crypt.3
index 11f465faa82..daa9c4d844a 100644
--- a/lib/libc/crypt/crypt.3
+++ b/lib/libc/crypt/crypt.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: crypt.3,v 1.14 2000/01/22 02:17:55 aaron Exp $
+.\" $OpenBSD: crypt.3,v 1.15 2000/04/15 02:15:22 aaron Exp $
.\"
.\" FreeSec: libcrypt
.\"
@@ -234,8 +234,7 @@ iterations of
and stores the 64-bit result in the 8 characters at
.Fa out
(which may be the same as
-.Fa in
-).
+.Fa in ) .
The
.Fa salt
specifies perturbations to the
diff --git a/lib/libc/gen/directory.3 b/lib/libc/gen/directory.3
index 0518a2d8732..a0b7e01b6af 100644
--- a/lib/libc/gen/directory.3
+++ b/lib/libc/gen/directory.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: directory.3,v 1.11 2000/03/23 22:09:39 d Exp $
+.\" $OpenBSD: directory.3,v 1.12 2000/04/15 02:15:22 aaron Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -114,7 +114,7 @@ On successful return, the pointer returned at
will have the same value as the argument
.Fa entry .
Upon reaching the end of the directory stream, this pointer shall have the value
-.Dv NULL.
+.Dv NULL .
.Pp
The
.Fn telldir
diff --git a/lib/libc/gen/getpwent.3 b/lib/libc/gen/getpwent.3
index e001e020150..f736ae6b391 100644
--- a/lib/libc/gen/getpwent.3
+++ b/lib/libc/gen/getpwent.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getpwent.3,v 1.9 1999/07/09 13:35:17 aaron Exp $
+.\" $OpenBSD: getpwent.3,v 1.10 2000/04/15 02:15:22 aaron Exp $
.\"
.\" Copyright (c) 1988, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -168,7 +168,7 @@ The
.Fn getpwent ,
.Fn getpwnam ,
.Fn getpwuid ,
-.Fn setpwent,
+.Fn setpwent ,
and
.Fn endpwent
functions appeared in
diff --git a/lib/libc/gen/glob.3 b/lib/libc/gen/glob.3
index 57d77818611..e7a09744442 100644
--- a/lib/libc/gen/glob.3
+++ b/lib/libc/gen/glob.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: glob.3,v 1.13 1999/09/02 15:54:29 aaron Exp $
+.\" $OpenBSD: glob.3,v 1.14 2000/04/15 02:15:22 aaron Exp $
.\"
.\" Copyright (c) 1989, 1991, 1993, 1994
.\" The Regents of the University of California. All rights reserved.
@@ -81,7 +81,7 @@ and read permission on each directory of any filename component of
.Fa pattern
that contains any of the special characters
.Ql * ,
-.Ql ?
+.Ql ? ,
or
.Ql [ .
.Pp
@@ -420,13 +420,13 @@ function is expected to conform to
and
.St -xpg4.2 .
Note, however, that the flags
-.Dv GLOB_ALTDIRFUNC,
-.Dv GLOB_BRACE,
-.Dv GLOB_MAGCHAR,
-.Dv GLOB_NOMAGIC,
-.Dv GLOB_QUOTE,
+.Dv GLOB_ALTDIRFUNC ,
+.Dv GLOB_BRACE ,
+.Dv GLOB_MAGCHAR ,
+.Dv GLOB_NOMAGIC ,
+.Dv GLOB_QUOTE ,
and
-.Dv GLOB_TILDE,
+.Dv GLOB_TILDE ,
and the fields
.Fa gl_matchc
and
diff --git a/lib/libc/net/gethostbyname.3 b/lib/libc/net/gethostbyname.3
index a539a987c3f..aced5ba6167 100644
--- a/lib/libc/net/gethostbyname.3
+++ b/lib/libc/net/gethostbyname.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: gethostbyname.3,v 1.13 2000/01/05 01:04:14 deraadt Exp $
+.\" $OpenBSD: gethostbyname.3,v 1.14 2000/04/15 02:15:22 aaron Exp $
.\"
.\" Copyright (c) 1983, 1987, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -75,7 +75,7 @@ referenced by name or by address, respectively.
This structure contains either information obtained from the name server (i.e.,
.Xr resolver 3
and
-.Xr named 8 ),
+.Xr named 8 ) ,
broken-out fields from a line in
.Pa /etc/hosts ,
or database entries supplied by the
diff --git a/lib/libc/net/inet6_option_space.3 b/lib/libc/net/inet6_option_space.3
index 8943b9a3b14..8c2bb0caf69 100644
--- a/lib/libc/net/inet6_option_space.3
+++ b/lib/libc/net/inet6_option_space.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: inet6_option_space.3,v 1.4 2000/04/12 21:48:01 aaron Exp $
+.\" $OpenBSD: inet6_option_space.3,v 1.5 2000/04/15 02:15:23 aaron Exp $
.\"
.\" Copyright (c) 1983, 1987, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -180,7 +180,8 @@ before calling this function.
The option type must have a value from
.Li 2
to
-.Li 255 , inclusive.
+.Li 255 ,
+inclusive.
.Po
.Li 0
and
@@ -406,7 +407,8 @@ on an error.
.Pp
.Fn inet6_option_alloc
returns
-.Dv NULL on an error.
+.Dv NULL
+on an error.
.Pp
On errors,
.Fn inet6_option_next
diff --git a/lib/libc/regex/regex.3 b/lib/libc/regex/regex.3
index f4917464776..eb2e1d71aeb 100644
--- a/lib/libc/regex/regex.3
+++ b/lib/libc/regex/regex.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: regex.3,v 1.13 2000/03/14 21:31:45 aaron Exp $
+.\" $OpenBSD: regex.3,v 1.14 2000/04/15 02:15:23 aaron Exp $
.\"
.\" Copyright (c) 1997, Phillip F Knaack. All rights reserved.
.\"
@@ -308,7 +308,7 @@ both of type
(a signed arithmetic type at least as large as an
.Li off_t
and a
-.Li ssize_t ),
+.Li ssize_t ) ,
containing respectively the offset of the first character of a substring
and the offset of the first character after the end of the substring.
Offsets are measured from the beginning of the
diff --git a/lib/libc/rpc/rpc.3 b/lib/libc/rpc/rpc.3
index 161faba393c..a37ee5231ad 100644
--- a/lib/libc/rpc/rpc.3
+++ b/lib/libc/rpc/rpc.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: rpc.3,v 1.19 1999/06/16 08:45:11 alex Exp $
+.\" $OpenBSD: rpc.3,v 1.20 2000/04/15 02:15:23 aaron Exp $
.\" Mostly converted to mandoc by Theo de Raadt, Tue Feb 24 04:04:46 MST 1998
.\"
.Dd February 16, 1988
@@ -888,8 +888,7 @@ is zero,
.Tn IPPROTO_UDP
or
.B
-.Tn IPPROTO_TCP
-).
+.Tn IPPROTO_TCP ) .
The procedure
.Fa dispatch
has the following form:
diff --git a/lib/libc/stdio/fseek.3 b/lib/libc/stdio/fseek.3
index a20f47d10c5..cb14e62a968 100644
--- a/lib/libc/stdio/fseek.3
+++ b/lib/libc/stdio/fseek.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: fseek.3,v 1.5 2000/02/21 22:11:22 millert Exp $
+.\" $OpenBSD: fseek.3,v 1.6 2000/04/15 02:15:23 aaron Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -137,8 +137,8 @@ are alternate interfaces equivalent to
and
.Fn fseek
(with whence set to
-.Dv SEEK_SET
-), setting and storing the current value of
+.Dv SEEK_SET ) ,
+setting and storing the current value of
the file offset into or from the object referenced by
.Fa pos .
On some
diff --git a/lib/libc/stdio/printf.3 b/lib/libc/stdio/printf.3
index 8cebcdd714e..d76e8327b37 100644
--- a/lib/libc/stdio/printf.3
+++ b/lib/libc/stdio/printf.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: printf.3,v 1.23 2000/04/12 08:00:17 hugh Exp $
+.\" $OpenBSD: printf.3,v 1.24 2000/04/15 02:15:24 aaron Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -86,7 +86,7 @@ as described below.
and
.Fn vprintf
write output to
-.Em stdout,
+.Em stdout ,
the standard output stream;
.Fn fprintf
and
diff --git a/lib/libc/stdio/stdio.3 b/lib/libc/stdio/stdio.3
index 93886ed4b2e..b49d87d61e5 100644
--- a/lib/libc/stdio/stdio.3
+++ b/lib/libc/stdio/stdio.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: stdio.3,v 1.10 1999/07/09 13:35:23 aaron Exp $
+.\" $OpenBSD: stdio.3,v 1.11 2000/04/15 02:15:24 aaron Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -173,7 +173,7 @@ without first removing their current definitions with
.Dv FOPEN_MAX ,
.Dv L_cuserid ,
.Dv L_ctermid ,
-.Dv L_tmpnam,
+.Dv L_tmpnam ,
.Dv NULL ,
.Dv SEEK_END ,
.Dv SEEK_SET ,
diff --git a/lib/libc/sys/brk.2 b/lib/libc/sys/brk.2
index 6967e52a960..c24a5940133 100644
--- a/lib/libc/sys/brk.2
+++ b/lib/libc/sys/brk.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: brk.2,v 1.10 2000/03/14 21:31:40 aaron Exp $
+.\" $OpenBSD: brk.2,v 1.11 2000/04/15 02:15:24 aaron Exp $
.\" $NetBSD: brk.2,v 1.7 1995/02/27 12:31:57 cgd Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
@@ -103,7 +103,7 @@ beyond the
value returned from a call to
.Xr getrlimit ,
e.g.,
-.Dq etext + rlp\(->rlim_max.
+.Dq etext + rlp\(->rlim_max .
(see
.Xr end 3
for the definition of
diff --git a/lib/libc/sys/clock_gettime.2 b/lib/libc/sys/clock_gettime.2
index 3bb68d904b6..532ef11970b 100644
--- a/lib/libc/sys/clock_gettime.2
+++ b/lib/libc/sys/clock_gettime.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: clock_gettime.2,v 1.9 1999/10/05 17:12:26 aaron Exp $
+.\" $OpenBSD: clock_gettime.2,v 1.10 2000/04/15 02:15:24 aaron Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -82,7 +82,7 @@ struct timespec {
.Pp
Only the super-user may set the time of day.
If the system securelevel is greater than 1 (see
-.Xr init 8 ),
+.Xr init 8 ) ,
the time may only be advanced.
This limitation is imposed to prevent a malicious super-user
from setting arbitrary time stamps on files.
diff --git a/lib/libc/sys/fhopen.2 b/lib/libc/sys/fhopen.2
index aac31faf04d..5d4702a04be 100644
--- a/lib/libc/sys/fhopen.2
+++ b/lib/libc/sys/fhopen.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: fhopen.2,v 1.1 2000/02/07 05:01:13 assar Exp $
+.\" $OpenBSD: fhopen.2,v 1.2 2000/04/15 02:15:24 aaron Exp $
.\" $NetBSD: fhopen.2,v 1.2 1999/12/02 21:42:36 kleink Exp $
.\"
.\" Copyright (c) 1999 National Aeronautics & Space Administration
@@ -53,7 +53,7 @@
.Fn fhstatfs "const fhandle_t *fhp" "struct statfs *buf"
.Sh DESCRIPTION
These functions provide a means to access a file given the file handle
-.Fa fhp.
+.Fa fhp .
As this method bypasses directory access restrictions, these calls are
restricted to the superuser.
.Pp
diff --git a/lib/libc/sys/getsockopt.2 b/lib/libc/sys/getsockopt.2
index 11834aa9304..3f04eca96f8 100644
--- a/lib/libc/sys/getsockopt.2
+++ b/lib/libc/sys/getsockopt.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: getsockopt.2,v 1.14 1999/08/15 13:14:11 deraadt Exp $
+.\" $OpenBSD: getsockopt.2,v 1.15 2000/04/15 02:15:24 aaron Exp $
.\" $NetBSD: getsockopt.2,v 1.7 1995/02/27 12:33:29 cgd Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
@@ -191,8 +191,8 @@ are queued on socket and a
.Xr close 2
is performed.
If the socket promises reliable delivery of data and
-.Dv SO_LINGER is set,
-the system will block the process on the
+.Dv SO_LINGER
+is set, the system will block the process on the
.Xr close 2
attempt until it is able to transmit the data or until it decides it
is unable to deliver the information (a timeout period measured in seconds,
diff --git a/lib/libc/sys/gettimeofday.2 b/lib/libc/sys/gettimeofday.2
index 29c8fe20c43..9ba18540e34 100644
--- a/lib/libc/sys/gettimeofday.2
+++ b/lib/libc/sys/gettimeofday.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: gettimeofday.2,v 1.8 1999/08/31 16:52:35 aaron Exp $
+.\" $OpenBSD: gettimeofday.2,v 1.9 2000/04/15 02:15:24 aaron Exp $
.\"
.\" Copyright (c) 1980, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -99,7 +99,7 @@ the appropriate part of the year.
.Pp
Only the super-user may set the time of day or time zone.
If the system securelevel is greater than 1 (see
-.Xr init 8 ),
+.Xr init 8 ) ,
the time may only be advanced.
This limitation is imposed to prevent a malicious super-user
from setting arbitrary time stamps on files.
diff --git a/lib/libc/sys/recv.2 b/lib/libc/sys/recv.2
index b52b61a59e9..9630db8a2b7 100644
--- a/lib/libc/sys/recv.2
+++ b/lib/libc/sys/recv.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: recv.2,v 1.22 1999/09/26 14:16:31 espie Exp $
+.\" $OpenBSD: recv.2,v 1.23 2000/04/15 02:15:24 aaron Exp $
.\" $NetBSD: recv.2,v 1.6 1995/02/27 12:36:08 cgd Exp $
.\"
.\" Copyright (c) 1983, 1990, 1991, 1993
@@ -252,7 +252,7 @@ The socket is associated with a connection-oriented protocol
and has not been connected (see
.Xr connect 2
and
-.Xr accept 2 ).
+.Xr accept 2 ) .
.It Bq Er ENOTSOCK
The argument
.Fa s
diff --git a/lib/libc/sys/select.2 b/lib/libc/sys/select.2
index c807b5f0969..f3959a85b06 100644
--- a/lib/libc/sys/select.2
+++ b/lib/libc/sys/select.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: select.2,v 1.16 2000/01/22 02:17:55 aaron Exp $
+.\" $OpenBSD: select.2,v 1.17 2000/04/15 02:15:24 aaron Exp $
.\" $NetBSD: select.2,v 1.5 1995/06/27 22:32:28 cgd Exp $
.\"
.\" Copyright (c) 1983, 1991, 1993
@@ -242,14 +242,14 @@ before and after the call to
and using
.Fn timersub
(as described in
-.Xr getitimer 2 Ns ).
+.Xr getitimer 2 ) .
.Pp
Internally to the kernel,
.Fn select
works poorly if multiple processes wait on the same file descriptor.
Given that, it is rather surprising to see that many daemons are
written that way (i.e.,
-.Xr httpd 8 ).
+.Xr httpd 8 ) .
.Sh HISTORY
The
.Fn select
diff --git a/lib/libc/sys/shmat.2 b/lib/libc/sys/shmat.2
index 51d020b5a36..8d93f37adfb 100644
--- a/lib/libc/sys/shmat.2
+++ b/lib/libc/sys/shmat.2
@@ -1,4 +1,4 @@
-.\" $OpenBSD: shmat.2,v 1.9 1999/09/23 04:12:00 alex Exp $
+.\" $OpenBSD: shmat.2,v 1.10 2000/04/15 02:15:25 aaron Exp $
.\" $NetBSD: shmat.2,v 1.2 1997/03/27 08:20:38 mikel Exp $
.\"
.\" Copyright (c) 1995 Frank van der Linden
@@ -65,8 +65,7 @@ the system will round the address down to a multiple of
bytes
.Pf ( Dv SHMLBA
is defined in
-.Aq Pa sys/shm.h
-).
+.Aq Pa sys/shm.h ) .
.Pp
A shared memory segment can be mapped read-only by specifying the
.Dv SHM_RDONLY
diff --git a/lib/libc/termios/tcsendbreak.3 b/lib/libc/termios/tcsendbreak.3
index 9f59951d2b7..c20ea9f86b4 100644
--- a/lib/libc/termios/tcsendbreak.3
+++ b/lib/libc/termios/tcsendbreak.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tcsendbreak.3,v 1.5 1999/07/05 13:09:08 aaron Exp $
+.\" $OpenBSD: tcsendbreak.3,v 1.6 2000/04/15 02:15:25 aaron Exp $
.\"
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
@@ -80,7 +80,7 @@ transmitting data to the system.
in the
.Ql Input Modes
section of
-.Xr termios 4 ).
+.Xr termios 4 ) .
.It Dv TCION
Transmit a START character, which is intended to cause the terminal to start
transmitting data to the system.
@@ -88,7 +88,7 @@ transmitting data to the system.
.Dv IXOFF in the
.Ql Input Modes
section of
-.Xr termios 4 ).
+.Xr termios 4 ) .
.El
.Pp
The
diff --git a/lib/libc/termios/tcsetattr.3 b/lib/libc/termios/tcsetattr.3
index e1e305ba585..1c4fa677622 100644
--- a/lib/libc/termios/tcsetattr.3
+++ b/lib/libc/termios/tcsetattr.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: tcsetattr.3,v 1.9 1999/07/05 13:09:08 aaron Exp $
+.\" $OpenBSD: tcsetattr.3,v 1.10 2000/04/15 02:15:25 aaron Exp $
.\"
.\" Copyright (c) 1991 The Regents of the University of California.
.\" All rights reserved.
@@ -206,7 +206,7 @@ function sets the flags stored in the
.Li termios
structure to a state disabling
all input and output processing, giving a
-.Dq raw I/O path.
+.Dq raw I/O path .
It should be noted that there is no function to reverse this effect.
This is because there are a variety of processing options that could be
re-enabled and the correct method is for an application to snapshot the
diff --git a/lib/libc/time/ctime.3 b/lib/libc/time/ctime.3
index 5dedb511376..77b76317040 100644
--- a/lib/libc/time/ctime.3
+++ b/lib/libc/time/ctime.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: ctime.3,v 1.20 2000/03/31 00:10:14 millert Exp $
+.\" $OpenBSD: ctime.3,v 1.21 2000/04/15 02:15:26 aaron Exp $
.\"
.\"
.Dd February 16, 1999
@@ -266,8 +266,7 @@ field of a returned
points to a static array of characters, which
will also be overwritten at the next call
(and by calls to
-.Fn tzset
-).
+.Fn tzset ) .
.Pp
The default system time zone may be set by running
.Li Dq zic -l timezone