aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/std/iostream
diff options
context:
space:
mode:
authorDave Korn <dave.korn.cygwin@gmail.com>2010-01-29 13:13:03 +0000
committerDave Korn <dave.korn.cygwin@gmail.com>2010-01-29 13:13:03 +0000
commit55a47238cdf9f7e74b2584de7d1e4c8dfd0bdc62 (patch)
tree10636c4a9d8f8eb4474dee6e5f9cecdc03aa28cb /libstdc++-v3/include/std/iostream
parent64c0beccfb71e92dc4a37d67d7321c241773aef8 (diff)
Synchronize libstdc++ as dll changes to mainline version, preparatory tocygwin-improvements
adopting new "apply dllimport attribute to namespace" approach. * libstdc++-v3/src/Makefile.in: Synch to mainline. * libstdc++-v3/src/Makefile.am: Likewise. * libstdc++-v3/include/std/iostream: Likewise. * libstdc++-v3/include/std/stdexcept: Likewise. * libstdc++-v3/include/ext/concurrence.h: Likewise. * libstdc++-v3/include/bits/locale_classes.tcc: Likewise. * libstdc++-v3/include/bits/locale_facets.tcc: Likewise. * libstdc++-v3/include/bits/locale_classes.h: Likewise. * libstdc++-v3/include/bits/locale_facets.h: Likewise. * libstdc++-v3/include/bits/basic_ios.tcc: Likewise. * libstdc++-v3/include/bits/ios_base.h: Likewise. * libstdc++-v3/include/bits/istream.tcc: Likewise. * libstdc++-v3/include/bits/codecvt.h: Likewise. * libstdc++-v3/include/bits/ostream.tcc: Likewise. * libstdc++-v3/include/bits/sstream.tcc: Likewise. * libstdc++-v3/include/bits/c++config: Likewise. * libstdc++-v3/include/bits/basic_string.tcc: Likewise. * libstdc++-v3/include/bits/locale_facets_nonio.tcc: Likewise. * libstdc++-v3/include/bits/streambuf.tcc: Likewise. * libstdc++-v3/include/bits/fstream.tcc: Likewise. * libstdc++-v3/include/backward/strstream: Likewise. * libstdc++-v3/libsupc++/typeinfo: Likewise. * libstdc++-v3/libsupc++/exception: Likewise. * libstdc++-v3/libsupc++/new: Likewise. * libstdc++-v3/testsuite/lib/libstdc++.exp: Likewise. * libstdc++-v3/config/os/newlib/os_defines.h: Likewise. * libstdc++-v3/config/os/mingw32/os_defines.h: Likewise. * libstdc++-v3/include/profile/hashtable.h: Delete. git-svn-id: https://gcc.gnu.org/svn/gcc/branches/cygwin-improvements@156349 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include/std/iostream')
-rw-r--r--libstdc++-v3/include/std/iostream16
1 files changed, 8 insertions, 8 deletions
diff --git a/libstdc++-v3/include/std/iostream b/libstdc++-v3/include/std/iostream
index 9e7d5027c72..e14c4f36632 100644
--- a/libstdc++-v3/include/std/iostream
+++ b/libstdc++-v3/include/std/iostream
@@ -55,16 +55,16 @@ _GLIBCXX_BEGIN_NAMESPACE(std)
* termination. For more information, see the HOWTO linked to above.
*/
//@{
- extern _GLIBCXX_IMPORT istream cin; ///< Linked to standard input
- extern _GLIBCXX_IMPORT ostream cout; ///< Linked to standard output
- extern _GLIBCXX_IMPORT ostream cerr; ///< Linked to standard error (unbuffered)
- extern _GLIBCXX_IMPORT ostream clog; ///< Linked to standard error (buffered)
+ extern istream cin; ///< Linked to standard input
+ extern ostream cout; ///< Linked to standard output
+ extern ostream cerr; ///< Linked to standard error (unbuffered)
+ extern ostream clog; ///< Linked to standard error (buffered)
#ifdef _GLIBCXX_USE_WCHAR_T
- extern _GLIBCXX_IMPORT wistream wcin; ///< Linked to standard input
- extern _GLIBCXX_IMPORT wostream wcout; ///< Linked to standard output
- extern _GLIBCXX_IMPORT wostream wcerr; ///< Linked to standard error (unbuffered)
- extern _GLIBCXX_IMPORT wostream wclog; ///< Linked to standard error (buffered)
+ extern wistream wcin; ///< Linked to standard input
+ extern wostream wcout; ///< Linked to standard output
+ extern wostream wcerr; ///< Linked to standard error (unbuffered)
+ extern wostream wclog; ///< Linked to standard error (buffered)
#endif
//@}