| //===--------------------------- iostream ---------------------------------===// |
| // The LLVM Compiler Infrastructure |
| // This file is dual licensed under the MIT and the University of Illinois Open |
| // Source Licenses. See LICENSE.TXT for details. |
| //===----------------------------------------------------------------------===// |
| #if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER) |
| #pragma GCC system_header |
| _LIBCPP_BEGIN_NAMESPACE_STD |
| #ifndef _LIBCPP_HAS_NO_STDIN |
| extern _LIBCPP_FUNC_VIS istream cin; |
| extern _LIBCPP_FUNC_VIS wistream wcin; |
| #ifndef _LIBCPP_HAS_NO_STDOUT |
| extern _LIBCPP_FUNC_VIS ostream cout; |
| extern _LIBCPP_FUNC_VIS wostream wcout; |
| extern _LIBCPP_FUNC_VIS ostream cerr; |
| extern _LIBCPP_FUNC_VIS wostream wcerr; |
| extern _LIBCPP_FUNC_VIS ostream clog; |
| extern _LIBCPP_FUNC_VIS wostream wclog; |
| _LIBCPP_END_NAMESPACE_STD |
| #endif // _LIBCPP_IOSTREAM |