diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/gcc/cp/ChangeLog gcc-2.95.2.1/gcc/cp/ChangeLog *** gcc-2.95.2/gcc/cp/ChangeLog Sun Oct 24 23:59:12 1999 --- gcc-2.95.2.1/gcc/cp/ChangeLog Wed Dec 6 22:03:29 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/ChangeLog gcc-2.95.2.1/libio/ChangeLog *** gcc-2.95.2/libio/ChangeLog Sun Oct 24 23:59:15 1999 --- gcc-2.95.2.1/libio/ChangeLog Wed Dec 6 22:03:36 2000 *************** *** 1,3 **** --- 1,35 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + + Wed Dec 6 22:52:34 2000 Jeffrey A Law (law@cygnus.com) + + 2000-10-11 Jakub Jelinek + * iostream.cc (ostream::operator<<(double n)) [__GLIBC_MINOR__ >= 2]: + Initialize new fields wide and i18n of struct printf_info. + (ostream::operator<<(long double n)) [__GLIBC_MINOR__ >= 2]: + Likewise. + + 2000-09-23 Franz Sirl + * stdstreams.cc: Include , not "libio.h". + * iolibio.h: Likewise. + (_IO_pos_BAD): Use _IO_off_t instead of _IO_fpos_t. + * libio.h (_IO_USER_LOCK): Define. + + 1999-12-13 Jakub Jelinek + * libio.h (_IO_cookie_io_functions_t): Use _IO_off_t instead of + _IO_fpos_t. + (_IO_seekoff, _IO_seekpos): Likewise. Use _IO_off64_t instead of + _IO_fpos64_t. + * libioP.h (_IO_seekoff_t, _IO_seekpos_t, _IO_seek_t): Likewise. + (_IO_seekoff, _IO_seekpos): Likewise. + (_IO_default_seekoff, _IO_default_seekpos): Likewise. + (_IO_default_seek): Likewise. + (_IO_file_seekoff, _IO_file_seek, _IO_str_seekoff): Likewise. + * streambuf.h (streampos): Typedef to _IO_off_t resp. _IO_off64_t. + * parsestream.h (class parsebuf::pos_at_line_start): Change type + to _IO_off_t. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/iolibio.h gcc-2.95.2.1/libio/iolibio.h *** gcc-2.95.2/libio/iolibio.h Tue Feb 24 12:09:50 1998 --- gcc-2.95.2.1/libio/iolibio.h Wed Dec 6 21:57:28 2000 *************** *** 1,4 **** ! #include "libio.h" /* These emulate stdio functionality, but with a different name (_IO_ungetc instead of ungetc), and using _IO_FILE instead of FILE. */ --- 1,4 ---- ! #include /* These emulate stdio functionality, but with a different name (_IO_ungetc instead of ungetc), and using _IO_FILE instead of FILE. */ *************** extern int _IO_obstack_vprintf __P ((str *** 38,44 **** _IO_va_list)); extern int _IO_obstack_printf __P ((struct obstack *, const char *, ...)); #ifndef _IO_pos_BAD ! #define _IO_pos_BAD ((_IO_fpos_t)(-1)) #endif #define _IO_clearerr(FP) ((FP)->_flags &= ~(_IO_ERR_SEEN|_IO_EOF_SEEN)) #define _IO_fseek(__fp, __offset, __whence) \ --- 38,48 ---- _IO_va_list)); extern int _IO_obstack_printf __P ((struct obstack *, const char *, ...)); #ifndef _IO_pos_BAD ! # if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! # define _IO_pos_BAD ((_IO_off64_t) -1) ! # else ! # define _IO_pos_BAD ((_IO_off_t) -1) ! # endif #endif #define _IO_clearerr(FP) ((FP)->_flags &= ~(_IO_ERR_SEEN|_IO_EOF_SEEN)) #define _IO_fseek(__fp, __offset, __whence) \ diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/iostream.cc gcc-2.95.2.1/libio/iostream.cc *** gcc-2.95.2/libio/iostream.cc Fri Aug 6 23:01:46 1999 --- gcc-2.95.2.1/libio/iostream.cc Wed Dec 6 21:57:28 2000 *************** *** 1,5 **** /* This is part of libio/iostream, providing -*- C++ -*- input/output. ! Copyright (C) 1993, 1997 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or modify it under the --- 1,5 ---- /* This is part of libio/iostream, providing -*- C++ -*- input/output. ! Copyright (C) 1993, 1997, 2000 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or modify it under the *************** ostream& ostream::operator<<(double n) *** 687,692 **** --- 687,696 ---- /* extra: */ 0, #if __GLIBC_MINOR__ >= 1 /* is_char: */ 0, + #if __GLIBC_MINOR__ >= 2 + /* wide: */ 0, + /* i18n: */ 0, + #endif #endif #endif /* pad: */ fill() *************** ostream& ostream::operator<<(long double *** 793,798 **** --- 797,806 ---- /* extra: */ 0, #if __GLIBC_MINOR__ >= 1 /* is_char: */ 0, + #if __GLIBC_MINOR__ >= 2 + /* wide: */ 0, + /* i18n: */ 0, + #endif #endif #endif /* pad: */ fill() diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/libio.h gcc-2.95.2.1/libio/libio.h *** gcc-2.95.2/libio/libio.h Mon Jun 29 11:06:26 1998 --- gcc-2.95.2.1/libio/libio.h Wed Dec 6 21:57:28 2000 *************** *** 136,141 **** --- 136,142 ---- #define _IO_IS_APPENDING 0x1000 #define _IO_IS_FILEBUF 0x2000 #define _IO_BAD_SEEN 0x4000 + #define _IO_USER_LOCK 0x8000 /* These are "formatting flags" matching the iostream fmtflags enum values. */ #define _IO_SKIPWS 01 *************** typedef struct *** 277,283 **** { _IO_ssize_t (*read) __PMT ((struct _IO_FILE *, void *, _IO_ssize_t)); _IO_ssize_t (*write) __PMT ((struct _IO_FILE *, const void *, _IO_ssize_t)); ! _IO_fpos_t (*seek) __PMT ((struct _IO_FILE *, _IO_off_t, int)); int (*close) __PMT ((struct _IO_FILE *)); } _IO_cookie_io_functions_t; --- 278,284 ---- { _IO_ssize_t (*read) __PMT ((struct _IO_FILE *, void *, _IO_ssize_t)); _IO_ssize_t (*write) __PMT ((struct _IO_FILE *, const void *, _IO_ssize_t)); ! _IO_off_t (*seek) __PMT ((struct _IO_FILE *, _IO_off_t, int)); int (*close) __PMT ((struct _IO_FILE *)); } _IO_cookie_io_functions_t; *************** extern _IO_ssize_t _IO_padn __P ((_IO_FI *** 348,358 **** extern _IO_size_t _IO_sgetn __P ((_IO_FILE *, void *, _IO_size_t)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_fpos64_t _IO_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_fpos64_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos64_t, int)); #else ! extern _IO_fpos_t _IO_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_fpos_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos_t, int)); #endif extern void _IO_free_backup_area __P ((_IO_FILE *)); --- 349,359 ---- extern _IO_size_t _IO_sgetn __P ((_IO_FILE *, void *, _IO_size_t)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_off64_t _IO_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_off64_t _IO_seekpos __P ((_IO_FILE *, _IO_off64_t, int)); #else ! extern _IO_off_t _IO_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_off_t _IO_seekpos __P ((_IO_FILE *, _IO_off_t, int)); #endif extern void _IO_free_backup_area __P ((_IO_FILE *)); diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/libioP.h gcc-2.95.2.1/libio/libioP.h *** gcc-2.95.2/libio/libioP.h Mon May 17 15:58:56 1999 --- gcc-2.95.2.1/libio/libioP.h Wed Dec 6 21:57:29 2000 *************** typedef _IO_size_t (*_IO_xsgetn_t) __PMT *** 146,155 **** It matches the streambuf::seekoff virtual function. It is also used for the ANSI fseek function. */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! typedef _IO_fpos64_t (*_IO_seekoff_t) __PMT ((_IO_FILE *FP, _IO_off64_t OFF, int DIR, int MODE)); #else ! typedef _IO_fpos_t (*_IO_seekoff_t) __PMT ((_IO_FILE *FP, _IO_off_t OFF, int DIR, int MODE)); #endif #define _IO_SEEKOFF(FP, OFF, DIR, MODE) JUMP3 (__seekoff, FP, OFF, DIR, MODE) --- 146,155 ---- It matches the streambuf::seekoff virtual function. It is also used for the ANSI fseek function. */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! typedef _IO_off64_t (*_IO_seekoff_t) __PMT ((_IO_FILE *FP, _IO_off64_t OFF, int DIR, int MODE)); #else ! typedef _IO_off_t (*_IO_seekoff_t) __PMT ((_IO_FILE *FP, _IO_off_t OFF, int DIR, int MODE)); #endif #define _IO_SEEKOFF(FP, OFF, DIR, MODE) JUMP3 (__seekoff, FP, OFF, DIR, MODE) *************** typedef _IO_fpos_t (*_IO_seekoff_t) __PM *** 160,168 **** It is also used for the ANSI fgetpos and fsetpos functions. */ /* The _IO_seek_cur and _IO_seek_end options are not allowed. */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! typedef _IO_fpos64_t (*_IO_seekpos_t) __PMT ((_IO_FILE *, _IO_fpos64_t, int)); #else ! typedef _IO_fpos_t (*_IO_seekpos_t) __PMT ((_IO_FILE *, _IO_fpos_t, int)); #endif #define _IO_SEEKPOS(FP, POS, FLAGS) JUMP2 (__seekpos, FP, POS, FLAGS) --- 160,168 ---- It is also used for the ANSI fgetpos and fsetpos functions. */ /* The _IO_seek_cur and _IO_seek_end options are not allowed. */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! typedef _IO_off64_t (*_IO_seekpos_t) __PMT ((_IO_FILE *, _IO_off64_t, int)); #else ! typedef _IO_off_t (*_IO_seekpos_t) __PMT ((_IO_FILE *, _IO_off_t, int)); #endif #define _IO_SEEKPOS(FP, POS, FLAGS) JUMP2 (__seekpos, FP, POS, FLAGS) *************** typedef _IO_ssize_t (*_IO_write_t) __PMT *** 213,221 **** It matches the streambuf::sys_seek virtual function, which is specific to this implementation. */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! typedef _IO_fpos64_t (*_IO_seek_t) __PMT ((_IO_FILE *, _IO_off64_t, int)); #else ! typedef _IO_fpos_t (*_IO_seek_t) __PMT ((_IO_FILE *, _IO_off_t, int)); #endif #define _IO_SYSSEEK(FP, OFFSET, MODE) JUMP2 (__seek, FP, OFFSET, MODE) --- 213,221 ---- It matches the streambuf::sys_seek virtual function, which is specific to this implementation. */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! typedef _IO_off64_t (*_IO_seek_t) __PMT ((_IO_FILE *, _IO_off64_t, int)); #else ! typedef _IO_off_t (*_IO_seek_t) __PMT ((_IO_FILE *, _IO_off_t, int)); #endif #define _IO_SYSSEEK(FP, OFFSET, MODE) JUMP2 (__seek, FP, OFFSET, MODE) *************** struct _IO_FILE_plus *** 298,308 **** /* Generic functions */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_fpos64_t _IO_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_fpos64_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos64_t, int)); #else ! extern _IO_fpos_t _IO_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_fpos_t _IO_seekpos __P ((_IO_FILE *, _IO_fpos_t, int)); #endif extern void _IO_switch_to_main_get_area __P ((_IO_FILE *)); --- 298,308 ---- /* Generic functions */ #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_off64_t _IO_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_off64_t _IO_seekpos __P ((_IO_FILE *, _IO_off64_t, int)); #else ! extern _IO_off_t _IO_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_off_t _IO_seekpos __P ((_IO_FILE *, _IO_off_t, int)); #endif extern void _IO_switch_to_main_get_area __P ((_IO_FILE *)); *************** extern _IO_size_t _IO_default_xsputn __P *** 340,361 **** _IO_size_t)); extern _IO_size_t _IO_default_xsgetn __P ((_IO_FILE *, void *, _IO_size_t)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_fpos64_t _IO_default_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_fpos64_t _IO_default_seekpos __P ((_IO_FILE *, ! _IO_fpos64_t, int)); #else ! extern _IO_fpos_t _IO_default_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_fpos_t _IO_default_seekpos __P ((_IO_FILE *, _IO_fpos_t, int)); #endif extern _IO_ssize_t _IO_default_write __P ((_IO_FILE *, const void *, _IO_ssize_t)); extern _IO_ssize_t _IO_default_read __P ((_IO_FILE *, void *, _IO_ssize_t)); extern int _IO_default_stat __P ((_IO_FILE *, void *)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_fpos64_t _IO_default_seek __P ((_IO_FILE *, _IO_off64_t, int)); #else ! extern _IO_fpos_t _IO_default_seek __P ((_IO_FILE *, _IO_off_t, int)); #endif extern int _IO_default_sync __P ((_IO_FILE *)); #define _IO_default_close ((_IO_close_t) _IO_default_sync) --- 340,361 ---- _IO_size_t)); extern _IO_size_t _IO_default_xsgetn __P ((_IO_FILE *, void *, _IO_size_t)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_off64_t _IO_default_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_off64_t _IO_default_seekpos __P ((_IO_FILE *, ! _IO_off64_t, int)); #else ! extern _IO_off_t _IO_default_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_off_t _IO_default_seekpos __P ((_IO_FILE *, _IO_off_t, int)); #endif extern _IO_ssize_t _IO_default_write __P ((_IO_FILE *, const void *, _IO_ssize_t)); extern _IO_ssize_t _IO_default_read __P ((_IO_FILE *, void *, _IO_ssize_t)); extern int _IO_default_stat __P ((_IO_FILE *, void *)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_off64_t _IO_default_seek __P ((_IO_FILE *, _IO_off64_t, int)); #else ! extern _IO_off_t _IO_default_seek __P ((_IO_FILE *, _IO_off_t, int)); #endif extern int _IO_default_sync __P ((_IO_FILE *)); #define _IO_default_close ((_IO_close_t) _IO_default_sync) *************** extern void _IO_flush_all_linebuffered _ *** 389,399 **** extern int _IO_file_doallocate __P ((_IO_FILE *)); extern _IO_FILE* _IO_file_setbuf __P ((_IO_FILE *, char *, _IO_ssize_t)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_fpos64_t _IO_file_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_fpos64_t _IO_file_seek __P ((_IO_FILE *, _IO_off64_t, int)); #else ! extern _IO_fpos_t _IO_file_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_fpos_t _IO_file_seek __P ((_IO_FILE *, _IO_off_t, int)); #endif extern _IO_size_t _IO_file_xsputn __P ((_IO_FILE *, const void *, _IO_size_t)); extern int _IO_file_stat __P ((_IO_FILE *, void *)); --- 389,399 ---- extern int _IO_file_doallocate __P ((_IO_FILE *)); extern _IO_FILE* _IO_file_setbuf __P ((_IO_FILE *, char *, _IO_ssize_t)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_off64_t _IO_file_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); ! extern _IO_off64_t _IO_file_seek __P ((_IO_FILE *, _IO_off64_t, int)); #else ! extern _IO_off_t _IO_file_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); ! extern _IO_off_t _IO_file_seek __P ((_IO_FILE *, _IO_off_t, int)); #endif extern _IO_size_t _IO_file_xsputn __P ((_IO_FILE *, const void *, _IO_size_t)); extern int _IO_file_stat __P ((_IO_FILE *, void *)); *************** extern int _IO_str_underflow __P ((_IO_F *** 427,435 **** extern int _IO_str_overflow __P ((_IO_FILE *, int)); extern int _IO_str_pbackfail __P ((_IO_FILE *, int)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_fpos64_t _IO_str_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); #else ! extern _IO_fpos_t _IO_str_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); #endif extern void _IO_str_finish __P ((_IO_FILE *, int)); --- 427,435 ---- extern int _IO_str_overflow __P ((_IO_FILE *, int)); extern int _IO_str_pbackfail __P ((_IO_FILE *, int)); #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! extern _IO_off64_t _IO_str_seekoff __P ((_IO_FILE *, _IO_off64_t, int, int)); #else ! extern _IO_off_t _IO_str_seekoff __P ((_IO_FILE *, _IO_off_t, int, int)); #endif extern void _IO_str_finish __P ((_IO_FILE *, int)); *************** extern int _IO_vscanf __P ((const char * *** 544,555 **** where an _IO_fpos_t is a struct. Note that _IO_off_t must be an integral type. */ ! /* _IO_pos_BAD is an _IO_fpos_t value indicating error, unknown, or EOF. */ #ifndef _IO_pos_BAD # if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! # define _IO_pos_BAD ((_IO_fpos64_t) -1) # else ! # define _IO_pos_BAD ((_IO_fpos_t) -1) # endif #endif /* _IO_pos_as_off converts an _IO_fpos_t value to an _IO_off_t value. */ --- 544,555 ---- where an _IO_fpos_t is a struct. Note that _IO_off_t must be an integral type. */ ! /* _IO_pos_BAD is an _IO_off_t value indicating error, unknown, or EOF. */ #ifndef _IO_pos_BAD # if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 ! # define _IO_pos_BAD ((_IO_off64_t) -1) # else ! # define _IO_pos_BAD ((_IO_off_t) -1) # endif #endif /* _IO_pos_as_off converts an _IO_fpos_t value to an _IO_off_t value. */ diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/parsestream.h gcc-2.95.2.1/libio/parsestream.h *** gcc-2.95.2/libio/parsestream.h Thu Aug 21 15:58:20 1997 --- gcc-2.95.2.1/libio/parsestream.h Wed Dec 6 21:57:29 2000 *************** extern "C++" { *** 42,48 **** class parsebuf : public streambuf { protected: ! _IO_fpos_t pos_at_line_start; long _line_length; unsigned long __line_number; char *buf_start; --- 42,48 ---- class parsebuf : public streambuf { protected: ! _IO_off_t pos_at_line_start; long _line_length; unsigned long __line_number; char *buf_start; diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/stdio/ChangeLog gcc-2.95.2.1/libio/stdio/ChangeLog *** gcc-2.95.2/libio/stdio/ChangeLog Sun Oct 24 23:59:15 1999 --- gcc-2.95.2.1/libio/stdio/ChangeLog Wed Dec 6 22:03:36 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/stdstreams.cc gcc-2.95.2.1/libio/stdstreams.cc *** gcc-2.95.2/libio/stdstreams.cc Thu Aug 21 15:58:21 1997 --- gcc-2.95.2.1/libio/stdstreams.cc Wed Dec 6 21:57:29 2000 *************** the executable file might be covered by *** 36,42 **** // then we don't need to, since in that case stdin/stdout/stderr // are identical to _IO_stdin/_IO_stdout/_IO_stderr. ! #include "libio.h" #ifdef _STDIO_USES_IOSTREAM #define CIN_SBUF _IO_stdin_ --- 36,42 ---- // then we don't need to, since in that case stdin/stdout/stderr // are identical to _IO_stdin/_IO_stdout/_IO_stderr. ! #include #ifdef _STDIO_USES_IOSTREAM #define CIN_SBUF _IO_stdin_ diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/streambuf.h gcc-2.95.2.1/libio/streambuf.h *** gcc-2.95.2/libio/streambuf.h Sun Aug 8 17:07:01 1999 --- gcc-2.95.2.1/libio/streambuf.h Wed Dec 6 21:57:29 2000 *************** class ostream; class streambuf; *** 72,81 **** #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 typedef _IO_off64_t streamoff; ! typedef _IO_fpos64_t streampos; #else typedef _IO_off_t streamoff; ! typedef _IO_fpos_t streampos; #endif typedef _IO_ssize_t streamsize; --- 72,81 ---- #if defined(_G_IO_IO_FILE_VERSION) && _G_IO_IO_FILE_VERSION == 0x20001 typedef _IO_off64_t streamoff; ! typedef _IO_off64_t streampos; #else typedef _IO_off_t streamoff; ! typedef _IO_off_t streampos; #endif typedef _IO_ssize_t streamsize; diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/tests/ChangeLog gcc-2.95.2.1/libio/tests/ChangeLog *** gcc-2.95.2/libio/tests/ChangeLog Sun Oct 24 23:59:15 1999 --- gcc-2.95.2.1/libio/tests/ChangeLog Wed Dec 6 22:03:36 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libio/testsuite/ChangeLog gcc-2.95.2.1/libio/testsuite/ChangeLog *** gcc-2.95.2/libio/testsuite/ChangeLog Sun Oct 24 23:59:15 1999 --- gcc-2.95.2.1/libio/testsuite/ChangeLog Wed Dec 6 22:03:36 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libstdc++/ChangeLog gcc-2.95.2.1/libstdc++/ChangeLog *** gcc-2.95.2/libstdc++/ChangeLog Sun Oct 24 23:59:16 1999 --- gcc-2.95.2.1/libstdc++/ChangeLog Wed Dec 6 22:03:36 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libstdc++/stl/ChangeLog gcc-2.95.2.1/libstdc++/stl/ChangeLog *** gcc-2.95.2/libstdc++/stl/ChangeLog Sun Oct 24 23:59:16 1999 --- gcc-2.95.2.1/libstdc++/stl/ChangeLog Wed Dec 6 22:03:37 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libstdc++/tests/ChangeLog gcc-2.95.2.1/libstdc++/tests/ChangeLog *** gcc-2.95.2/libstdc++/tests/ChangeLog Sun Oct 24 23:59:16 1999 --- gcc-2.95.2.1/libstdc++/tests/ChangeLog Wed Dec 6 22:03:37 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released. diff -x de.gmo -x fr.gmo -Nrc3p gcc-2.95.2/libstdc++/testsuite/ChangeLog gcc-2.95.2.1/libstdc++/testsuite/ChangeLog *** gcc-2.95.2/libstdc++/testsuite/ChangeLog Sun Oct 24 23:59:16 1999 --- gcc-2.95.2.1/libstdc++/testsuite/ChangeLog Wed Dec 6 22:03:37 2000 *************** *** 1,3 **** --- 1,7 ---- + Wed Dec 6 22:03:04 PST 2000 Jeff Law (law@cygnus.com) + + * gcc-2.95.2.1 Released. + Sun Oct 24 23:54:10 PDT 1999 Jeff Law (law@cygnus.com) * gcc-2.95.2 Released.