* libio.h: Fix typo.

From-SVN: r15170
This commit is contained in:
Weiwen Liu 1997-09-08 16:12:05 +00:00 committed by Jeff Law
parent 52b7724b84
commit 2ce72aa0a8
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
Mon Sep 8 01:30:27 1997 Weiwen Liu <liu@hepunix.physics.yale.edu>
* libio.h: Fix typo.
Sun Sep 7 23:00:18 1997 Jim Wilson (wilson@cygnus.com)
* linux.mt (LIBIOSTREAM_DEP): Change stdio.list to stmp-stdio.

View File

@ -273,7 +273,7 @@ extern int __overflow __P((_IO_FILE*, int));
? __overflow(_fp, (unsigned char)(_ch)) \
: (unsigned char)(*(_fp)->_IO_write_ptr++ = (_ch)))
#define _IO_feof_unclocked(__fp) (((__fp)->_flags & _IO_EOF_SEEN) != 0)
#define _IO_feof_unlocked(__fp) (((__fp)->_flags & _IO_EOF_SEEN) != 0)
#define _IO_ferror_unlocked(__fp) (((__fp)->_flags & _IO_ERR_SEEN) != 0)
extern int _IO_getc __P ((_IO_FILE *__fp));