This commit is contained in:
Michael Kerrisk 2007-06-17 14:12:43 +00:00
parent 4db7cf5dbd
commit 9bef72b5ba
11 changed files with 14 additions and 12 deletions

View File

@ -204,7 +204,7 @@ in the environment variable TIME.
Use the portable output format.
.TP
.BI "\-o " FILE ", \-\-output=" FILE
Do not send the results to stderr, but overwrite the specified file.
Do not send the results to \fIstderr\fp, but overwrite the specified file.
.TP
.B "\-a, \-\-append"
(Used together with \-o.) Do not overwrite but append.

View File

@ -147,7 +147,7 @@ server queries.
The (obsolete)
.BR herror ()
function prints the error message associated
with the current value of \fIh_errno\fP on stderr.
with the current value of \fIh_errno\fP on \fIstderr\fp.
.PP
The (obsolete)
.BR hstrerror ()

View File

@ -145,7 +145,7 @@ of the scanning mode.
If
.BR getopt ()
does not recognize an option character, it prints an
error message to stderr, stores the character in \fIoptopt\fP, and
error message to \fIstderr\fp, stores the character in \fIoptopt\fP, and
returns '?'.
The calling program may prevent the error message by
setting \fIopterr\fP to 0.

View File

@ -27,7 +27,7 @@ The
function is the wide-character equivalent of the
.BR getchar (3)
function.
It reads a wide character from \fBstdin\fP and returns
It reads a wide character from \fIstdin\fP and returns
it.
If the end of stream is reached, or if \fIferror(stdin)\fP becomes
true, it returns WEOF.

View File

@ -61,7 +61,8 @@ and fills the field
(if there is such a field) with the process ID of the calling process.
Then it tries to fill the field
.IR ut->ut_line .
It takes the first of stdin, stdout, stderr that is a tty, and
It takes the first of \fIstdin\fP, \fIstdout\fP, \fIstderr\fP
that is a tty, and
stores the corresponding pathname minus a possible leading \fI/dev/\fP
into this field, and then writes the struct to the utmp file.
On the other hand, if no tty name was found, this field is filled with "???"

View File

@ -164,7 +164,7 @@ memory leaks can result.
If
.BR MALLOC_CHECK_
is set to 0, any detected heap corruption is silently ignored;
if set to 1, a diagnostic is printed on stderr;
if set to 1, a diagnostic is printed on \fIstderr\fp;
if set to 2,
.BR abort (3)
is called immediately.

View File

@ -27,7 +27,7 @@ The
function is the wide-character equivalent of the
.BR putchar (3)
function.
It writes the wide character \fIwc\fP to \fBstdout\fP.
It writes the wide character \fIwc\fP to \fIstdout\fP.
If \fIferror(stdout)\fP becomes true, it returns WEOF.
If a wide character
conversion error occurs, it sets \fIerrno\fP to \fBEILSEQ\fP and returns WEOF.

View File

@ -66,7 +66,7 @@ When an output stream is unbuffered, information appears on
the destination file or terminal as soon as written; when it is block
buffered many characters are saved up and written as a block; when it is
line buffered characters are saved up until a newline is output or input is
read from any stream attached to a terminal device (typically stdin).
read from any stream attached to a terminal device (typically \fIstdin\fP).
The function
.BR fflush (3)
may be used to force the block out early.

View File

@ -47,8 +47,8 @@ The
and
.BR vwprintf ()
functions
perform wide-character output to \fBstdout\fP.
\fBstdout\fP must not be byte oriented; see function
perform wide-character output to \fIstdout\fP.
\fIstdout\fP must not be byte oriented; see function
.BR fwide (3)
for more information.
.PP

View File

@ -1209,7 +1209,8 @@ This file contains the maximum number of in-memory inodes.
On some (2.4) systems, it may not be
present.
This value should be 3-4 times larger
than the value in file-max, since stdin, stdout and network sockets also
than the value in file-max, since \fIstdin\fP, \fIstdout\fP
and network sockets also
need an inode to handle them.
When you regularly run
out of inodes, you need to increase this value.

View File

@ -1067,7 +1067,7 @@ macro is identical, but without the dash.
The
.Ql \&.Fl
macro without any arguments results
in a dash representing stdin/stdout.
in a dash representing \fIstdin\fP/\fIstdout\fP.
Note that giving
.Ql \&.Fl
a single dash, will result in two dashes.