diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2001-01-29 15:27:28 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2001-01-29 15:27:28 +0000 |
commit | fbbd8adf8ad208245f18c2e4a068810b9c401242 (patch) | |
tree | 13008452e954d3f8bced87002eda49ce086db406 /gnu/egcs/libio/iostream.cc | |
parent | 82acc2c5e72b389f6c60f8d6f0652eb24d8bb831 (diff) |
2.95.3, test release 2
Diffstat (limited to 'gnu/egcs/libio/iostream.cc')
-rw-r--r-- | gnu/egcs/libio/iostream.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gnu/egcs/libio/iostream.cc b/gnu/egcs/libio/iostream.cc index 4b75fca764d..792eaae6b4c 100644 --- a/gnu/egcs/libio/iostream.cc +++ b/gnu/egcs/libio/iostream.cc @@ -1,5 +1,5 @@ /* This is part of libio/iostream, providing -*- C++ -*- input/output. - Copyright (C) 1993, 1997 Free Software Foundation, Inc. + 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 @@ -687,6 +687,10 @@ ostream& ostream::operator<<(double n) /* extra: */ 0, #if __GLIBC_MINOR__ >= 1 /* is_char: */ 0, +#if __GLIBC_MINOR__ >= 2 + /* wide: */ 0, + /* i18n: */ 0, +#endif #endif #endif /* pad: */ fill() @@ -793,6 +797,10 @@ ostream& ostream::operator<<(long double n) /* extra: */ 0, #if __GLIBC_MINOR__ >= 1 /* is_char: */ 0, +#if __GLIBC_MINOR__ >= 2 + /* wide: */ 0, + /* i18n: */ 0, +#endif #endif #endif /* pad: */ fill() |