Mail Archives: djgpp-workers/2001/02/11/13:58:51.1
> 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;
- Raw text -