summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2002-05-29 15:42:59 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2002-05-29 15:42:59 +0000
commit16fb68493648997d94909b465fc89b68d7cbd1b7 (patch)
treed93760618f00654a4727cd28c24b5f07274c81df /lib/libc
parent81e9cda2c9258107ab5f9ed61d6a162c58985568 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdio/getc.38
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/stdio/getc.3 b/lib/libc/stdio/getc.3
index daae84c8539c..8ff83d6edb48 100644
--- a/lib/libc/stdio/getc.3
+++ b/lib/libc/stdio/getc.3
@@ -83,7 +83,7 @@ The
.Fn getw
function
obtains the next
-.Em int
+.Vt int
(if present)
from the stream pointed at by
.Fa stream .
@@ -92,9 +92,9 @@ If successful, these routines return the next requested object
from the
.Fa stream .
Character values are returned as an
-.Li unsigned char
+.Vt "unsigned char"
converted to an
-.Li int .
+.Vt int .
If the stream is at end-of-file or a read error occurs,
the routines return
.Dv EOF .
@@ -136,7 +136,7 @@ and
must be used to check for failure after calling
.Fn getw .
The size and byte order of an
-.Em int
+.Vt int
varies from one machine to another, and
.Fn getw
is not recommended for portable applications.