aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2007-12-16 13:39:24 +0000
committerMichael Kerrisk <mtk.manpages@gmail.com>2007-12-16 13:39:24 +0000
commitec5a588f8d31f5937176d8db9ad4ebcea0be2251 (patch)
treeaeb82233da3c03ecde2c830b512f4f6cc4eb7f75
parentb20979f0e8ee02c419827ee3bfd80bcc6be5dd43 (diff)
downloadman-pages-ec5a588f8d31f5937176d8db9ad4ebcea0be2251.tar.gz
ffix
-rw-r--r--man3/__setfpucw.37
-rw-r--r--man3/recno.326
-rw-r--r--man3/stdin.312
-rw-r--r--man3/stdio_ext.33
-rw-r--r--man3/strerror.33
-rw-r--r--man3/strftime.34
-rw-r--r--man3/tempnam.32
7 files changed, 38 insertions, 19 deletions
diff --git a/man3/__setfpucw.3 b/man3/__setfpucw.3
index d6a8a79fdd..147c98bd42 100644
--- a/man3/__setfpucw.3
+++ b/man3/__setfpucw.3
@@ -36,8 +36,11 @@ and FPU exception handling, like
.IR fesetexceptflag ,
.IR fetestexcept .
.PP
-If direct access to the FPU control word is still needed, the _FPU_GETCW
-and _FPU_SETCW macros from
+If direct access to the FPU control word is still needed, the
+.B _FPU_GETCW
+and
+.B _FPU_SETCW
+macros from
.I <fpu_control.h>
can be used.
.SH EXAMPLE
diff --git a/man3/recno.3 b/man3/recno.3
index 996a6712dc..346969250b 100644
--- a/man3/recno.3
+++ b/man3/recno.3
@@ -66,6 +66,7 @@ is defined in the
.I <db.h>
include file as follows:
.PP
+.in +0.5i
.nf
typedef struct {
u_long flags;
@@ -77,6 +78,7 @@ typedef struct {
char *bfname;
} RECNOINFO;
.fi
+.in
.PP
The elements of this structure are defined as follows:
.TP
@@ -117,7 +119,7 @@ is called, instead of permitting any unmodified records to be read from
the original file.
.RE
.TP
-cachesize
+.I cachesize
A suggested maximum size, in bytes, of the memory cache.
This value is
.B only
@@ -126,7 +128,7 @@ If
.I cachesize
is 0 (no size is specified) a default cache is used.
.TP
-psize
+.I psize
The recno access method stores the in-memory copies of its records
in a btree.
This value is the size (in bytes) of the pages used for nodes in that tree.
@@ -138,7 +140,7 @@ See
.BR btree (3)
for more information.
.TP
-lorder
+.I lorder
The byte order for integers in the stored database metadata.
The number should represent the order as an integer; for example,
big endian order would be the number 4,321.
@@ -146,24 +148,28 @@ If
.I lorder
is 0 (no order is specified) the current host order is used.
.TP
-reclen
+.I reclen
The length of a fixed-length record.
.TP
-bval
+.I bval
The delimiting byte to be used to mark the end of a record for
variable-length records, and the pad character for fixed-length
records.
-If no value is specified, newlines (``\en'') are used to mark the end
+If no value is specified, newlines ("\en") are used to mark the end
of variable-length records and fixed-length records are padded with
spaces.
.TP
-bfname
+.I bfname
The recno access method stores the in-memory copies of its records
in a btree.
-If bfname is non-NULL, it specifies the name of the btree file,
+If
+.I bfname
+is non-NULL, it specifies the name of the btree file,
as if specified as the filename for a dbopen of a btree file.
.PP
-The data part of the key/data pair used by the recno access method
+The data part of the key/data pair used by the
+.I recno
+access method
is the same as other access methods.
The key is different.
The
@@ -171,7 +177,7 @@ The
field of the key should be a pointer to a memory location of type
.IR recno_t ,
as defined in th
-.I <db.h
+.I <db.h>
include file.
This type is normally the largest unsigned integral type available to
the implementation.
diff --git a/man3/stdin.3 b/man3/stdin.3
index 6c10c3391b..a3c6fa2044 100644
--- a/man3/stdin.3
+++ b/man3/stdin.3
@@ -40,12 +40,16 @@ and
Each of these symbols is a
.BR stdio (3)
-macro of type pointer to FILE, and can be used with functions like
+macro of type pointer to
+.IR FILE ,
+and can be used with functions like
.BR fprintf (3)
or
.BR fread (3).
.sp
-Since FILEs are a buffering wrapper around Unix file descriptors, the
+Since
+.IR FILE s
+are a buffering wrapper around Unix file descriptors, the
same underlying files may also be accessed using the raw Unix file
interface, that is, the functions like
.BR read (2)
@@ -71,7 +75,9 @@ are defined with these values in
to one of these streams can change the file descriptor number
associated with the stream.)
.sp
-Note that mixing use of FILEs and raw file descriptors can produce
+Note that mixing use of
+.IR FILE s
+and raw file descriptors can produce
unexpected results and should generally be avoided.
(For the masochistic among you: POSIX.1, section 8.2.3, describes
in detail how this interaction is supposed to work.)
diff --git a/man3/stdio_ext.3 b/man3/stdio_ext.3
index b693eeb43d..6ce28028cd 100644
--- a/man3/stdio_ext.3
+++ b/man3/stdio_ext.3
@@ -110,7 +110,8 @@ This is the default.
The caller will take care of the locking (possibly using
.BR flockfile (3)
in case there is more than one thread), and the stdio routines
-will not do locking until the state is reset to FSETLOCKING_INTERNAL.
+will not do locking until the state is reset to
+.BR FSETLOCKING_INTERNAL .
.TP
.B FSETLOCKING_QUERY
Don't change the type of locking.
diff --git a/man3/strerror.3 b/man3/strerror.3
index 9bdfa5311a..0548c29d9e 100644
--- a/man3/strerror.3
+++ b/man3/strerror.3
@@ -60,7 +60,8 @@ is provided if:
The
.BR strerror ()
function returns a string describing the error
-code passed in the argument \fIerrnum\fP, possibly using the LC_MESSAGES
+code passed in the argument \fIerrnum\fP, possibly using the
+.B LC_MESSAGES
part of the current locale to select the appropriate language.
This string must not be modified by the application, but may be
modified by a subsequent call to
diff --git a/man3/strftime.3 b/man3/strftime.3
index ef7f9a6929..f8c6ccc0f9 100644
--- a/man3/strftime.3
+++ b/man3/strftime.3
@@ -290,7 +290,9 @@ for example, in many locales
.B %p
yields an empty string.
.SH ENVIRONMENT
-The environment variables TZ and
+The environment variables
+.B TZ
+and
.B LC_TIME
are used.
.SH "CONFORMING TO"
diff --git a/man3/tempnam.3 b/man3/tempnam.3
index d6fbabd743..23a105ffbd 100644
--- a/man3/tempnam.3
+++ b/man3/tempnam.3
@@ -149,7 +149,7 @@ will fail with the error
.B EEXIST
upon failure to find a unique name.
.SH BUGS
-The precise meaning of `appropriate' is undefined;
+The precise meaning of "appropriate" is undefined;
it is unspecified how accessibility of a directory is determined.
Never use this function.