Comment out a paragraph describing behavior which NetBSD's fopen(3) does

not exhibit, per PR 6072.
This commit is contained in:
fair 2000-05-17 10:09:35 +00:00
parent eee5e33e8a
commit dc17a3ff45

View File

@ -1,4 +1,4 @@
.\" $NetBSD: fopen.3,v 1.10 2000/01/15 01:11:45 christos Exp $
.\" $NetBSD: fopen.3,v 1.11 2000/05/17 10:09:35 fair Exp $
.\"
.\" Copyright (c) 1990, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@ -128,15 +128,16 @@ and
functions initially position the stream at the start of the file
unless the file is opened with append mode,
in which case the stream is initially positioned at the end of the file.
.Pp
Reads and writes may be intermixed on read/write streams in any order,
and do not require an intermediate seek as in previous versions of
.Em stdio .
This is not portable to other systems, however;
.Tn ANSI C
requires that
a file positioning function intervene between output and input, unless
an input operation encounters end-of-file.
.\" PR 6072 claims this paragraph is not correct.
.\" .Pp
.\" Reads and writes may be intermixed on read/write streams in any order,
.\" and do not require an intermediate seek as in previous versions of
.\" .Em stdio .
.\" This is not portable to other systems, however;
.\" .Tn ANSI C
.\" requires that
.\" a file positioning function intervene between output and input, unless
.\" an input operation encounters end-of-file.
.Pp
The
.Fn fdopen