streambuf.h (ios::streamsize): Declare as _IO_ssize_t, as in the global scope.
* streambuf.h (ios::streamsize): Declare as _IO_ssize_t, as in the global scope. From-SVN: r28604
This commit is contained in:
parent
248c0b6908
commit
aee941f2bb
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
1999-08-08 Alexandre Oliva <oliva@dcc.unicamp.br>
|
||||||
|
|
||||||
|
* streambuf.h (ios::streamsize): Declare as _IO_ssize_t, as in the
|
||||||
|
global scope.
|
||||||
|
|
||||||
1999-08-07 Andreas Schwab <schwab@suse.de>
|
1999-08-07 Andreas Schwab <schwab@suse.de>
|
||||||
|
|
||||||
* iostream.cc: Add missing calls to isfx and setup a cleanup
|
* iostream.cc: Add missing calls to isfx and setup a cleanup
|
||||||
|
|
|
@ -130,7 +130,7 @@ class ios : public _ios_fields {
|
||||||
typedef __fmtflags fmtflags;
|
typedef __fmtflags fmtflags;
|
||||||
typedef int iostate;
|
typedef int iostate;
|
||||||
typedef int openmode;
|
typedef int openmode;
|
||||||
typedef int streamsize;
|
typedef _IO_ssize_t streamsize;
|
||||||
enum io_state {
|
enum io_state {
|
||||||
goodbit = _IOS_GOOD,
|
goodbit = _IOS_GOOD,
|
||||||
eofbit = _IOS_EOF,
|
eofbit = _IOS_EOF,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue