diff options
author | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-06-05 03:44:55 +0000 |
---|---|---|
committer | Aaron Campbell <aaron@cvs.openbsd.org> | 1999-06-05 03:44:55 +0000 |
commit | c9a0b521314010ea02baa07614fb4825386710bf (patch) | |
tree | d9bc53d3338a595a6042e2dbb2157bc6e1e94789 /lib/libc | |
parent | a6b6d761b41f8d2f36128c8cacb1e747b31ffe05 (diff) |
change some .Em/.Va to .Li, looks nicer
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/frexp.3 | 12 | ||||
-rw-r--r-- | lib/libc/gen/fts.3 | 70 | ||||
-rw-r--r-- | lib/libc/gen/getcap.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/getgrent.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/getpwent.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/glob.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/isalpha.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/isblank.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/islower.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/isspace.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/isupper.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/lockf.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/modf.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/setjmp.3 | 4 | ||||
-rw-r--r-- | lib/libc/gen/sigsetops.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/syslog.3 | 36 | ||||
-rw-r--r-- | lib/libc/gen/times.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/uname.3 | 14 | ||||
-rw-r--r-- | lib/libc/gen/utime.3 | 6 | ||||
-rw-r--r-- | lib/libc/gen/vis.3 | 4 |
20 files changed, 101 insertions, 113 deletions
diff --git a/lib/libc/gen/frexp.3 b/lib/libc/gen/frexp.3 index fee2ca4de7b..8551fa6c324 100644 --- a/lib/libc/gen/frexp.3 +++ b/lib/libc/gen/frexp.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: frexp.3,v 1.3 1999/05/16 19:54:51 alex Exp $ +.\" $OpenBSD: frexp.3,v 1.4 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -51,24 +51,24 @@ The function breaks a floating-point number into a normalized fraction and an integral power of 2. It stores the integer in the -.Em int +.Li int object pointed to by .Fa exp . .Sh RETURN VALUES The .Fn frexp function returns the value -.Em x , +.Li x , such that -.Em x +.Li x is a -.Em double +.Li double with magnitude in the interval .Bq 1/2 , 1 or zero, and .Fa value equals -.Em x +.Li x times 2 raised to the power .Fa *exp . If diff --git a/lib/libc/gen/fts.3 b/lib/libc/gen/fts.3 index cb36282fc94..59f4691abfc 100644 --- a/lib/libc/gen/fts.3 +++ b/lib/libc/gen/fts.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: fts.3,v 1.11 1999/06/04 01:30:10 aaron Exp $ +.\" $OpenBSD: fts.3,v 1.12 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1989, 1991, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -92,22 +92,22 @@ The first is .Dv FTS , the structure that represents the file hierarchy itself. The second is -.Em FTSENT , +.Li FTSENT , the structure that represents a file in the file hierarchy. Normally, an -.Em FTSENT +.Li FTSENT structure is returned for every file in the file hierarchy. In this manual page, .Dq file and -.Dq Em FTSENT No structure +.Dq Li FTSENT No structure are generally interchangeable. .Pp The -.Em FTSENT +.Li FTSENT structure contains at least the following fields, which are described in greater detail below: .Bd -literal @@ -133,7 +133,7 @@ These fields are defined as follows: .Bl -tag -width "fts_namelen" .It Fa fts_info One of the following flags describing the returned -.Em FTSENT +.Li FTSENT structure and the file it represents. With the exception of directories without errors @@ -149,11 +149,11 @@ A directory that causes a cycle in the tree. (The .Fa fts_cycle field of the -.Em FTSENT +.Li FTSENT structure will be filled in as well.) .It Dv FTS_DEFAULT Any -.Em FTSENT +.Li FTSENT structure that represents a file type not explicitly described by one of the other .Fa fts_info @@ -175,7 +175,7 @@ which was not specified as a file name to .It Dv FTS_DP A directory being visited in post-order. The contents of the -.Em FTSENT +.Li FTSENT structure will be unchanged from when it was returned in pre-order, i.e., with the .Fa fts_info @@ -232,15 +232,15 @@ The length of the string referenced by The depth of the traversal, numbered from \-1 to N, where this file was found. The -.Em FTSENT +.Li FTSENT structure representing the parent of the starting point (or root) of the traversal is numbered \-1, and the -.Em FTSENT +.Li FTSENT structure for the root itself is numbered 0. .It Fa fts_errno Upon return of an -.Em FTSENT +.Li FTSENT structure from the .Fn fts_children or @@ -275,7 +275,7 @@ It is initialized to .Dv NULL . .It Fa fts_parent A pointer to the -.Em FTSENT +.Li FTSENT structure referencing the file in the hierarchy immediately above the current file, i.e., the directory of which this file is a member. @@ -304,9 +304,9 @@ of a hard link between two directories, or a symbolic link pointing to a directory, the .Fa fts_cycle field of the structure will point to the -.Em FTSENT +.Li FTSENT structure in the hierarchy that references the same file as the current -.Em FTSENT +.Li FTSENT structure. Otherwise, the contents of the .Fa fts_cycle @@ -328,10 +328,10 @@ fields are guaranteed to be null terminated for the file most recently returned by .Fn fts_read . To use these fields to reference any files represented by other -.Em FTSENT +.Li FTSENT structures will require that the path buffer be modified using the information contained in that -.Em FTSENT +.Li FTSENT structure's .Fa fts_pathlen field. @@ -357,7 +357,7 @@ must be specified. The .Fa options are selected by -.Em OR Ns 'ing +.Tn OR Ns 'ing the following values: .Bl -tag -width "FTS_PHYSICAL" .It Dv FTS_COMFOLLOW @@ -369,11 +369,11 @@ is also specified. This option causes the .Nm routines to return -.Em FTSENT +.Li FTSENT structures for the targets of symbolic links instead of the symbolic links themselves. If this option is set, the only symbolic links for which -.Em FTSENT +.Li FTSENT structures are returned to the application are those referencing non-existent files. Either @@ -403,7 +403,7 @@ pathnames were provided as arguments to .Fn fts_open . .It Dv FTS_NOSTAT By default, returned -.Em FTSENT +.Li FTSENT structures reference file characteristic information (the .Fa statp field) for each file visited. @@ -421,11 +421,11 @@ field undefined. This option causes the .Nm routines to return -.Em FTSENT +.Li FTSENT structures for symbolic links themselves instead of the target files they point to. If this option is set, -.Em FTSENT +.Li FTSENT structures for all symbolic links in the hierarchy are returned to the application. Either @@ -447,7 +447,7 @@ encountered in the file hierarchy are ignored. This option causes the .Nm routines to return -.Em FTSENT +.Li FTSENT structures for them. .It Dv FTS_XDEV This option prevents @@ -469,7 +469,7 @@ specifies a user-defined function which may be used to order the traversal of the hierarchy. It takes two pointers to pointers to -.Em FTSENT +.Li FTSENT structures as arguments and should return a negative value, zero, or a positive value to indicate if the file referenced by its first argument comes before, in any order @@ -480,7 +480,7 @@ The and .Fa fts_pathlen fields of the -.Em FTSENT +.Li FTSENT structures may .Em never be used in this comparison. @@ -505,7 +505,7 @@ everything else. The .Fn fts_read function returns a pointer to an -.Em FTSENT +.Li FTSENT structure describing a file in the hierarchy. Directories (that are readable and do not cause cycles) are visited at @@ -530,14 +530,14 @@ and sets .Va errno appropriately. If an error related to a returned file occurs, a pointer to an -.Em FTSENT +.Li FTSENT structure is returned, and .Va errno may or may not have been set (see .Fa fts_info ) . .Pp The -.Em FTSENT +.Li FTSENT structures returned by .Fn fts_read may be overwritten after a call to @@ -548,7 +548,7 @@ on the same file hierarchy stream unless they represent a file of type directory, in which case they will not be overwritten until after a call to .Fn fts_read after the -.Em FTSENT +.Li FTSENT structure has been returned by the function .Fn fts_read in post-order. @@ -556,17 +556,17 @@ in post-order. The .Fn fts_children function returns a pointer to an -.Em FTSENT +.Li FTSENT structure describing the first entry in a null-terminated linked list of the files in the directory represented by the -.Em FTSENT +.Li FTSENT structure most recently returned by .Fn fts_read . The list is linked through the .Fa fts_link field of the -.Em FTSENT +.Li FTSENT structure, and is ordered by the user-specified comparison function, if any. Repeated calls to .Fn fts_children @@ -581,7 +581,7 @@ will return a pointer to the files in the logical directory specified to i.e., the arguments specified to .Fn fts_open . Otherwise, if the -.Em FTSENT +.Li FTSENT structure most recently returned by .Fn fts_read is not a directory being visited in pre-order, @@ -601,7 +601,7 @@ and sets appropriately. .Pp The -.Em FTSENT +.Li FTSENT structures returned by .Fn fts_children may be overwritten after a call to diff --git a/lib/libc/gen/getcap.3 b/lib/libc/gen/getcap.3 index 76de0a76a6f..6c3dd6ff585 100644 --- a/lib/libc/gen/getcap.3 +++ b/lib/libc/gen/getcap.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getcap.3,v 1.13 1999/06/04 01:30:10 aaron Exp $ +.\" $OpenBSD: getcap.3,v 1.14 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1992, 1993 .\" The Regents of the University of California. All rights reserved. @@ -280,7 +280,7 @@ The first capability of each record specifies its names, separated by characters. These names are used to reference records in the database. By convention, the last name is usually a comment and is not intended as a lookup tag. For example, the -.Em vt100 +.Dq vt100 record from the .Nm termcap database begins: diff --git a/lib/libc/gen/getgrent.3 b/lib/libc/gen/getgrent.3 index 007a9ff3a3d..d2ecf6944da 100644 --- a/lib/libc/gen/getgrent.3 +++ b/lib/libc/gen/getgrent.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getgrent.3,v 1.4 1999/06/04 01:30:11 aaron Exp $ +.\" $OpenBSD: getgrent.3,v 1.5 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -67,7 +67,7 @@ which is described in .Xr group 5 . Each line of the database is defined by the structure -.Em group +.Li struct group found in the include file .Aq Pa grp.h : diff --git a/lib/libc/gen/getpwent.3 b/lib/libc/gen/getpwent.3 index d74b047cc22..9331e76c940 100644 --- a/lib/libc/gen/getpwent.3 +++ b/lib/libc/gen/getpwent.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: getpwent.3,v 1.7 1999/06/04 01:30:11 aaron Exp $ +.\" $OpenBSD: getpwent.3,v 1.8 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1988, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -63,7 +63,7 @@ operate on the password database file which is described in .Xr passwd 5 . Each entry in the database is defined by the structure -.Em passwd +.Li struct passwd found in the include file .Aq Pa pwd.h : .Bd -literal -offset indent diff --git a/lib/libc/gen/glob.3 b/lib/libc/gen/glob.3 index 3f48eb2922a..3471f21e156 100644 --- a/lib/libc/gen/glob.3 +++ b/lib/libc/gen/glob.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: glob.3,v 1.10 1999/06/04 01:30:11 aaron Exp $ +.\" $OpenBSD: glob.3,v 1.11 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1989, 1991, 1993, 1994 .\" The Regents of the University of California. All rights reserved. @@ -56,7 +56,7 @@ matching used by the shell. The include file .Aq Pa glob.h defines the structure type -.Em glob_t , +.Li glob_t , which contains at least the following fields: .Bd -literal typedef struct { @@ -110,7 +110,7 @@ is used to modify the behavior of The value of .Fa flags is the bitwise inclusive -.Em OR +.Tn OR of any of the following values defined in .Aq Pa glob.h : diff --git a/lib/libc/gen/isalpha.3 b/lib/libc/gen/isalpha.3 index 502ed2a864d..4540663d02d 100644 --- a/lib/libc/gen/isalpha.3 +++ b/lib/libc/gen/isalpha.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: isalpha.3,v 1.4 1999/05/29 20:07:13 aaron Exp $ +.\" $OpenBSD: isalpha.3,v 1.5 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1991 The Regents of the University of California. .\" All rights reserved. @@ -61,9 +61,7 @@ for which none of or .Xr isspace 3 is true. -In the -.Em ``C'' -locale, +In the C locale, .Fn isalpha returns true only for the characters for which .Xr isupper 3 diff --git a/lib/libc/gen/isblank.3 b/lib/libc/gen/isblank.3 index 94971b6684d..5c6164a5ae2 100644 --- a/lib/libc/gen/isblank.3 +++ b/lib/libc/gen/isblank.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: isblank.3,v 1.4 1999/05/29 20:07:13 aaron Exp $ +.\" $OpenBSD: isblank.3,v 1.5 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1991 The Regents of the University of California. .\" All rights reserved. @@ -58,9 +58,7 @@ Space character. Horizontal tab. .El .Pp -In the -.Em ``C'' -locale, +In the C locale, .Fn isblank returns true only for the standard blank-space characters. .Sh RETURN VALUES diff --git a/lib/libc/gen/islower.3 b/lib/libc/gen/islower.3 index 845fdb44c98..2ff33867aee 100644 --- a/lib/libc/gen/islower.3 +++ b/lib/libc/gen/islower.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: islower.3,v 1.4 1999/05/29 20:07:13 aaron Exp $ +.\" $OpenBSD: islower.3,v 1.5 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1991 The Regents of the University of California. .\" All rights reserved. @@ -58,9 +58,7 @@ for which none of or .Xr isspace 3 is true. -In the -.Em ``C'' -locale, +In the C locale, .Fn islower returns true only for the characters defined as lower-case letters. .Sh RETURN VALUES diff --git a/lib/libc/gen/isspace.3 b/lib/libc/gen/isspace.3 index 2ba610352c5..36a1bc5f839 100644 --- a/lib/libc/gen/isspace.3 +++ b/lib/libc/gen/isspace.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: isspace.3,v 1.4 1999/05/29 20:07:13 aaron Exp $ +.\" $OpenBSD: isspace.3,v 1.5 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1991 The Regents of the University of California. .\" All rights reserved. @@ -71,9 +71,7 @@ Horizontal tab. And vertical tab. .El .Pp -In the -.Em ``C'' -locale, +In the C locale, .Fn isspace returns true only for the standard white-space characters. .Sh RETURN VALUES diff --git a/lib/libc/gen/isupper.3 b/lib/libc/gen/isupper.3 index 603779c21ae..e0edecc9c53 100644 --- a/lib/libc/gen/isupper.3 +++ b/lib/libc/gen/isupper.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: isupper.3,v 1.4 1999/05/29 20:07:13 aaron Exp $ +.\" $OpenBSD: isupper.3,v 1.5 1999/06/05 03:44:53 aaron Exp $ .\" .\" Copyright (c) 1991 The Regents of the University of California. .\" All rights reserved. @@ -56,9 +56,7 @@ implementation-defined set of characters for which none of or .Xr isspace 3 is true. -In the -.Em ``C'' -locale, +In the C locale, .Fn isupper returns true only for the characters defined as upper-case letters. .Sh RETURN VALUES diff --git a/lib/libc/gen/lockf.3 b/lib/libc/gen/lockf.3 index 43e6cd2aa81..2aa2d8b2bd8 100644 --- a/lib/libc/gen/lockf.3 +++ b/lib/libc/gen/lockf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: lockf.3,v 1.7 1999/06/03 10:03:22 aaron Exp $ +.\" $OpenBSD: lockf.3,v 1.8 1999/06/05 03:44:54 aaron Exp $ .\" $NetBSD: lockf.3,v 1.1 1997/12/20 20:23:17 kleink Exp $ .\" .\" Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -151,7 +151,7 @@ An .Dv F_ULOCK request in which size is non-zero and the offset of the last byte of the requested section is the maximum value for an object of type -.Em off_t , +.Li off_t , when the process has an existing lock in which size is 0 and which includes the last byte of the requested section, will be treated as a request to unlock from the start of the requested section with a diff --git a/lib/libc/gen/modf.3 b/lib/libc/gen/modf.3 index dbee8a591c3..0d1a5dc0ff8 100644 --- a/lib/libc/gen/modf.3 +++ b/lib/libc/gen/modf.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: modf.3,v 1.2 1996/08/19 08:25:00 tholo Exp $ +.\" $OpenBSD: modf.3,v 1.3 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -53,7 +53,7 @@ function breaks the argument into integral and fractional parts, each of which has the same sign as the argument. It stores the integral part as a -.Em double +.Li double in the object pointed to by .Fa iptr . .Sh RETURN VALUES diff --git a/lib/libc/gen/setjmp.3 b/lib/libc/gen/setjmp.3 index 4173ad0dec3..c94fb6a3cde 100644 --- a/lib/libc/gen/setjmp.3 +++ b/lib/libc/gen/setjmp.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: setjmp.3,v 1.6 1999/05/29 21:24:19 aaron Exp $ +.\" $OpenBSD: setjmp.3,v 1.7 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -113,7 +113,7 @@ All accessible objects have values as of the time .Fn longjmp routine was called, except that the values of objects of automatic storage invocation duration that do not have the -.Em volatile +.Li volatile type and have been changed between the .Fn setjmp invocation and diff --git a/lib/libc/gen/sigsetops.3 b/lib/libc/gen/sigsetops.3 index 80446f6b405..1f6a541fafc 100644 --- a/lib/libc/gen/sigsetops.3 +++ b/lib/libc/gen/sigsetops.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: sigsetops.3,v 1.4 1999/06/03 10:03:23 aaron Exp $ +.\" $OpenBSD: sigsetops.3,v 1.5 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -55,13 +55,13 @@ .Fn sigismember "sigset_t *set" "int signo" .Sh DESCRIPTION These functions manipulate signal sets stored in a -.Em sigset_t . +.Li sigset_t . Either .Fn sigemptyset or .Fn sigfillset must be called for every object of type -.Em sigset_t +.Li sigset_t before any other use of the object. .Fn sigemptyset and diff --git a/lib/libc/gen/syslog.3 b/lib/libc/gen/syslog.3 index ca7dbbfcce2..6cc56e5c710 100644 --- a/lib/libc/gen/syslog.3 +++ b/lib/libc/gen/syslog.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: syslog.3,v 1.4 1999/05/29 20:07:14 aaron Exp $ +.\" $OpenBSD: syslog.3,v 1.5 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1985, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -62,18 +62,18 @@ writes .Fa message to the system message logger. The message is then written to the system console, log files, -logged-in users, or forwarded to other machines as appropriate. (See -.Xr syslogd 8 . ) +logged-in users, or forwarded to other machines as appropriate (see +.Xr syslogd 8 ) . .Pp The message is identical to a .Xr printf 3 format string, except that .Ql %m is replaced by the current error -message. (As denoted by the global variable +message (as denoted by the global variable .Va errno ; see -.Xr strerror 3 . ) +.Xr strerror 3 ) . A trailing newline is added if none is present. .Pp The @@ -88,7 +88,7 @@ The message is tagged with Priorities are encoded as a .Fa facility and a -.Em level . +.Dq level . The facility describes the part of the system generating the message. The level is selected from the following @@ -132,7 +132,7 @@ The .Fa logopt argument is a bit field specifying logging options, which is formed by -.Em OR Ns 'ing +.Tn OR Ns 'ing one or more of the following values: .Bl -tag -width LOG_AUTHPRIV .It Dv LOG_CONS @@ -141,7 +141,7 @@ If cannot pass the message to .Xr syslogd it will attempt to write the message to the console -.Pq Dq Pa /dev/console. +.Pq Pa /dev/console . .It Dv LOG_NDELAY Open the connection to .Xr syslogd @@ -152,7 +152,7 @@ descriptors are allocated. .It Dv LOG_PERROR Write the message to standard error output as well to the system log. .It Dv LOG_PID -Log the process id with each message: useful for identifying +Log the process ID with each message; useful for identifying instantiations of daemons. .El .Pp @@ -173,14 +173,14 @@ The same as but logged to a file readable only by selected individuals. .It Dv LOG_CRON -The cron daemon: +The cron daemon, .Xr cron 8 . .It Dv LOG_DAEMON System daemons, such as .Xr routed 8 , that are not provided for explicitly by other facilities. .It Dv LOG_FTP -The file transfer protocol daemon: +The file transfer protocol daemon, .Xr ftpd 8 . .It Dv LOG_KERN Messages generated by the kernel. @@ -202,7 +202,9 @@ Messages generated internally by Messages generated by random user processes. This is the default facility identifier if none is specified. .It Dv LOG_UUCP -The uucp system. +The +.Tn UUCP +system. .It Dv LOG_LOCAL0 Reserved for local use. Similarly for @@ -237,13 +239,13 @@ is given by the macro .Fn LOG_UPTO toppri ; . The default allows all priorities to be logged. .Sh RETURN VALUES -The routines +The .Fn closelog , .Fn openlog , -.Fn syslog +.Fn syslog , and .Fn vsyslog -return no value. +functions return no value. .Pp The routine .Fn setlogmask @@ -251,13 +253,9 @@ always returns the previous log mask level. .Sh EXAMPLES .Bd -literal -offset indent -compact syslog(LOG_ALERT, "who: internal error 23"); - openlog("ftpd", LOG_PID | LOG_NDELAY, LOG_FTP); - setlogmask(LOG_UPTO(LOG_ERR)); - syslog(LOG_INFO, "Connection from host %d", CallingHost); - syslog(LOG_INFO|LOG_LOCAL2, "foobar error: %m"); .Ed .Sh SEE ALSO diff --git a/lib/libc/gen/times.3 b/lib/libc/gen/times.3 index aa792c06062..669d4b4d1fc 100644 --- a/lib/libc/gen/times.3 +++ b/lib/libc/gen/times.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: times.3,v 1.5 1999/05/29 22:38:35 aaron Exp $ +.\" $OpenBSD: times.3,v 1.6 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -62,7 +62,7 @@ It also fills in the structure pointed to by with time-accounting information. .Pp The -.Em tms +.Li tms structure is defined as follows: .Bd -literal -offset indent typedef struct { @@ -70,7 +70,7 @@ typedef struct { clock_t tms_stime; clock_t tms_cutime; clock_t tms_cstime; -} +}; .Ed .Pp The elements of this structure are defined as follows: diff --git a/lib/libc/gen/uname.3 b/lib/libc/gen/uname.3 index c32be4a21b3..0842b1df7a2 100644 --- a/lib/libc/gen/uname.3 +++ b/lib/libc/gen/uname.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: uname.3,v 1.7 1999/06/04 01:30:11 aaron Exp $ +.\" $OpenBSD: uname.3,v 1.8 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1994 .\" The Regents of the University of California. All rights reserved. @@ -49,21 +49,21 @@ the current system into the structure referenced by .Fa name . .Pp The -.Em utsname +.Li utsname structure is defined in the .Aq Pa sys/utsname.h header file, and contains the following members: .Pp .Bl -tag -width nodenameXXXX -offset indent -compact -.It sysname +.It Fa sysname Name of the operating system implementation. -.It nodename +.It Fa nodename Network name of this machine. -.It release +.It Fa release Release level of the operating system. -.It version +.It Fa version Version level of the operating system. -.It machine +.It Fa machine Machine hardware platform. .El .Sh RETURN VALUES diff --git a/lib/libc/gen/utime.3 b/lib/libc/gen/utime.3 index 52365bded62..0f48cdfb3ac 100644 --- a/lib/libc/gen/utime.3 +++ b/lib/libc/gen/utime.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: utime.3,v 1.9 1999/06/04 01:30:12 aaron Exp $ +.\" $OpenBSD: utime.3,v 1.10 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1980, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -65,14 +65,14 @@ If is non-null .Fa time is assumed to be a pointer to a -.Em utimbuf +.Li utimbuf structure, as defined in .Aq Pa utime.h : .Bd -literal -offset indent struct utimbuf { time_t actime; /* Access time */ time_t modtime; /* Modification time */ -} ; +}; .Ed .Pp The access time is set to the value of the diff --git a/lib/libc/gen/vis.3 b/lib/libc/gen/vis.3 index aa2de9df014..3548ca887b2 100644 --- a/lib/libc/gen/vis.3 +++ b/lib/libc/gen/vis.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: vis.3,v 1.7 1999/06/04 01:30:12 aaron Exp $ +.\" $OpenBSD: vis.3,v 1.8 1999/06/05 03:44:54 aaron Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -238,7 +238,7 @@ avoid ambiguity. Use a three digit octal sequence. The form is .Ql \eddd where -.Em d +.Ar d represents an octal digit. .El .Pp |