2010-05-12 03:42:16 +08:00
|
|
|
// -*- C++ -*-
|
|
|
|
//===--------------------------- iostream ---------------------------------===//
|
|
|
|
//
|
2019-01-19 18:56:40 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-05-12 03:42:16 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef _LIBCPP_IOSTREAM
|
|
|
|
#define _LIBCPP_IOSTREAM
|
|
|
|
|
|
|
|
/*
|
|
|
|
iostream synopsis
|
|
|
|
|
|
|
|
#include <ios>
|
|
|
|
#include <streambuf>
|
|
|
|
#include <istream>
|
|
|
|
#include <ostream>
|
|
|
|
|
|
|
|
namespace std {
|
|
|
|
|
|
|
|
extern istream cin;
|
|
|
|
extern ostream cout;
|
|
|
|
extern ostream cerr;
|
|
|
|
extern ostream clog;
|
|
|
|
extern wistream wcin;
|
|
|
|
extern wostream wcout;
|
|
|
|
extern wostream wcerr;
|
|
|
|
extern wostream wclog;
|
|
|
|
|
|
|
|
} // std
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <__config>
|
|
|
|
#include <ios>
|
|
|
|
#include <streambuf>
|
|
|
|
#include <istream>
|
|
|
|
#include <ostream>
|
|
|
|
|
2011-10-18 04:05:10 +08:00
|
|
|
#if !defined(_LIBCPP_HAS_NO_PRAGMA_SYSTEM_HEADER)
|
2010-05-12 03:42:16 +08:00
|
|
|
#pragma GCC system_header
|
2011-10-18 04:05:10 +08:00
|
|
|
#endif
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
_LIBCPP_BEGIN_NAMESPACE_STD
|
|
|
|
|
2015-03-26 22:35:46 +08:00
|
|
|
#ifndef _LIBCPP_HAS_NO_STDIN
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS istream cin;
|
|
|
|
extern _LIBCPP_FUNC_VIS wistream wcin;
|
2015-03-26 22:35:46 +08:00
|
|
|
#endif
|
|
|
|
#ifndef _LIBCPP_HAS_NO_STDOUT
|
|
|
|
extern _LIBCPP_FUNC_VIS ostream cout;
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS wostream wcout;
|
2015-03-26 22:35:46 +08:00
|
|
|
#endif
|
|
|
|
extern _LIBCPP_FUNC_VIS ostream cerr;
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS wostream wcerr;
|
2015-03-26 22:35:46 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS ostream clog;
|
2013-03-07 07:30:19 +08:00
|
|
|
extern _LIBCPP_FUNC_VIS wostream wclog;
|
2010-05-12 03:42:16 +08:00
|
|
|
|
|
|
|
_LIBCPP_END_NAMESPACE_STD
|
|
|
|
|
|
|
|
#endif // _LIBCPP_IOSTREAM
|