Update.
* libio/fileops.c (_IO_new_file_xsputn): Use _IO_OVERFLOW instead of __overflow.
This commit is contained in:
parent
7b5fd91d77
commit
5c8d1fc0f6
@ -1,5 +1,8 @@
|
||||
1999-08-24 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* libio/fileops.c (_IO_new_file_xsputn): Use _IO_OVERFLOW instead
|
||||
of __overflow.
|
||||
|
||||
* conform/conformtest.pl (@headers): Add monetary.h-data,
|
||||
mqueue.h-data, ndbm.h-data, nl_types.h-data, and poll.h-data.
|
||||
* conform/data/monetary.h-data: New file.
|
||||
|
@ -812,7 +812,7 @@ _IO_new_file_xsputn (f, data, n)
|
||||
{
|
||||
_IO_size_t block_size, do_write;
|
||||
/* Next flush the (full) buffer. */
|
||||
if (__overflow (f, EOF) == EOF)
|
||||
if (_IO_OVERFLOW (f, EOF) == EOF)
|
||||
return n - to_do;
|
||||
|
||||
/* Try to maintain alignment: write a whole number of blocks.
|
||||
|
Loading…
Reference in New Issue
Block a user