summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>2000-09-21 16:41:46 +0000
committerEivind Eklund <eivind@FreeBSD.org>2000-09-21 16:41:46 +0000
commit2bd09196cf9aafbee5398fcf75260d7f0ea356ab (patch)
treefe8020d43d680f4e22d1d04717f96c01f9baf307 /lib/libc
parent98a25f6ef2e1fbe4f007a8ed23b9fc1df166c931 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/stdio/fopen.34
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libc/stdio/fopen.3 b/lib/libc/stdio/fopen.3
index e3484778fd4b..d44ad41984ea 100644
--- a/lib/libc/stdio/fopen.3
+++ b/lib/libc/stdio/fopen.3
@@ -84,10 +84,14 @@ The stream is positioned at the beginning of the file.
Open for writing.
The file is created if it does not exist.
The stream is positioned at the end of the file.
+Subsequent writes to the file will always end up at the then current
+end of file, irrespective of intervening fseek()s.
.It Dq Li a+
Open for reading and writing.
The file is created if it does not exist.
The stream is positioned at the end of the file.
+Subsequent writes to the file will always end up at the then current
+end of file, irrespective of intervening fseek()s.
.El
.Pp
The