aboutsummaryrefslogtreecommitdiff
path: root/libstd-modules/std-io.mxx
blob: 701e1b97f97bd6bdb273429dd322c763ce553ab9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// file      : libstd-modules/std-io.mxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

export module std.io;

#ifdef _MSC_VER

export import std.core;

#elif defined(__clang__)
// Empty: can't handle the below and doesn't suppor re-export.
#else

import std.core;

export
{
#include <cctype>
#include <iosfwd>
#include <istream>
#include <ostream>
#include <iostream>
#include <sstream>
#include <fstream>
}

#endif