summaryrefslogtreecommitdiff
path: root/lib/libc/stdio
diff options
context:
space:
mode:
authorpooka <pooka@NetBSD.org>2003-03-28 17:00:49 +0000
committerpooka <pooka@NetBSD.org>2003-03-28 17:00:49 +0000
commit0e9bf3053cb2456e73d12d5bb3e8f23c4e4fc8f6 (patch)
tree29709b904cf43caab3f165840a81353382607815 /lib/libc/stdio
parentfaf7f09d5fa35e785cecc7f650a0ee53d103ad7c (diff)
avoid using multiple different ways of saying the same thing
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r--lib/libc/stdio/fopen.39
1 files changed, 5 insertions, 4 deletions
diff --git a/lib/libc/stdio/fopen.3 b/lib/libc/stdio/fopen.3
index e14cff40075..2f2bcb0de4f 100644
--- a/lib/libc/stdio/fopen.3
+++ b/lib/libc/stdio/fopen.3
@@ -1,4 +1,4 @@
-.\" $NetBSD: fopen.3,v 1.19 2003/01/18 11:29:52 thorpej Exp $
+.\" $NetBSD: fopen.3,v 1.20 2003/03/28 17:00:49 pooka Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -69,14 +69,15 @@ points to a string beginning with one of the following
sequences (Additional characters may follow these sequences.):
.Bl -tag -width indent
.It Dq Li r
-Open text file for reading.
+Open for reading.
.It Dq Li r+
Open for reading and writing.
.It Dq Li w
-Truncate file to zero length or create text file for writing.
+Open for writing.
+Truncate file to zero length or create file.
.It Dq Li w+
Open for reading and writing.
-The file is created if it does not exist, otherwise it is truncated.
+Truncate file to zero length or create file.
.It Dq Li a
Append; open for writing.
The file is created if it does not exist.