aboutsummaryrefslogtreecommitdiffstats
path: root/man3/getw.3
diff options
context:
space:
mode:
Diffstat (limited to 'man3/getw.3')
-rw-r--r--man3/getw.36
1 files changed, 3 insertions, 3 deletions
diff --git a/man3/getw.3 b/man3/getw.3
index 8174ceb3ec..d13dfd4c1f 100644
--- a/man3/getw.3
+++ b/man3/getw.3
@@ -33,11 +33,11 @@ getw, putw \- input and output of words (ints)
.br
.SH DESCRIPTION
\fBgetw\fP() reads a word (that is, an \fIint\fP) from \fIstream\fP. It's
-provided for compatibility with SVID. We recommend you use
+provided for compatibility with SVr4. We recommend you use
\fBfread\fP(3) instead.
.P
\fBputw\fP() writes the word \fIw\fP (that is, an \fIint\fP) to \fIstream\fP. It
-is provided for compatibility with SVID, but we recommend you use
+is provided for compatibility with SVr4, but we recommend you use
\fBfwrite\fP(3) instead.
.SH "RETURN VALUE"
Normally, \fBgetw\fP() returns the word read, and \fBputw\fP() returns 0.
@@ -46,7 +46,7 @@ On error, they return \fBEOF\fP.
The value returned on error is also a legitimate data value.
\fBferror\fP(3) can be used to distinguish between the two cases.
.SH "CONFORMING TO"
-SVID
+SVr4
.SH "SEE ALSO"
.BR ferror (3),
.BR fread (3),