diff options
author | Mark Mitchell <mark@codesourcery.com> | 2000-11-16 09:20:48 +0000 |
---|---|---|
committer | Mark Mitchell <mmitchel@gcc.gnu.org> | 2000-11-16 09:20:48 +0000 |
commit | c135a22c311a77b447715fdefb514440e556ec93 (patch) | |
tree | 296f0206bbd0d5f83c3637485483b4da22da4147 | |
parent | 29120f4427d9b029ef9fb4edf095b1f359814612 (diff) | |
download | gcc-c135a22c311a77b447715fdefb514440e556ec93.zip gcc-c135a22c311a77b447715fdefb514440e556ec93.tar.gz gcc-c135a22c311a77b447715fdefb514440e556ec93.tar.bz2 |
* config/c_io_stdio.h: Include libio.h.
From-SVN: r37495
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 | ||||
-rw-r--r-- | libstdc++-v3/config/c_io_stdio.h | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 143c12a..66512b8 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2000-11-16 Mark Mitchell <mark@codesourcery.com> + + * config/c_io_stdio.h: Include libio.h. + Wed Nov 15 18:39:34 2000 Mark P Mitchell <mark@codesourcery.com> * acinclude.m4 (GLIBCPP_ENABLE_CSTDIO): Substitute libio_la. diff --git a/libstdc++-v3/config/c_io_stdio.h b/libstdc++-v3/config/c_io_stdio.h index ab96aa2..8dcf71a 100644 --- a/libstdc++-v3/config/c_io_stdio.h +++ b/libstdc++-v3/config/c_io_stdio.h @@ -35,6 +35,12 @@ #include <stdio.h> #include <bits/c++threads.h> +#if _GLIBCPP_USE_WCHAR_T +// Even though we use the C stdio facilities for ordinary streams, +// we still use libio for wide-character support. +#include <libio.h> +#endif + namespace std { // from fpos.h |