| //===------------------------ iostream.cpp --------------------------------===// |
| // 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. |
| //===----------------------------------------------------------------------===// |
| _LIBCPP_BEGIN_NAMESPACE_STD |
| static __stdinbuf<char> __cin(stdin); |
| static __stdoutbuf<char> __cout(stdout); |
| static __stdoutbuf<char> __cerr(stderr); |
| static __stdinbuf<wchar_t> __wcin(stdin); |
| static __stdoutbuf<wchar_t> __wcout(stdout); |
| static __stdoutbuf<wchar_t> __wcerr(stderr); |
| wostream wcout(&__wcout); |
| wostream wcerr(&__wcerr); |
| wostream wclog(&__wcerr); |
| ios_base::Init __start_std_streams; |
| _LIBCPP_END_NAMESPACE_STD |