aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include/std/iostream
diff options
context:
space:
mode:
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
//@}