From: "Mark E." To: djgpp-workers AT delorie DOT com Date: Sun, 11 Feb 2001 13:58:44 -0500 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: posix/fcntl/fcntl.c Message-ID: <3A869A94.21992.A30702@localhost> In-reply-to: <200102111646.RAA18223@father.ludd.luth.se> X-mailer: Pegasus Mail for Win32 (v3.12c) Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > Didn't a comment disappear from posix/fcntl/fcntl.c with recent(?) > changes. Looks that way. If there are no objections, I'll add two comments to fcntl.c: Index: fcntl.c =================================================================== RCS file: /cvs/djgpp/djgpp/src/libc/posix/fcntl/fcntl.c,v retrieving revision 1.5 diff -c -p -r1.5 fcntl.c *** fcntl.c 2001/02/01 19:19:24 1.5 --- fcntl.c 2001/02/11 18:43:51 *************** fcntl(int fd, int cmd, ...) *** 408,419 **** --- 408,421 ---- case F_GETFL: { + /* FIXME: Return O_APPEND and O_ACCMODE flags. */ return 0; } case F_SETFL: { + /* FIXME: Set O_APPEND and O_ACCMODE flags. */ unsigned char new_mode_bits;