aboutsummaryrefslogtreecommitdiff
path: root/std-core.mxx
blob: 6ee4a9e843a6356e1df152e0fa3ea62ec7412b12 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
// file      : std-core.mxx -*- C++ -*-
// copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

export module std.core;

export
{
#include <cstddef>
#include <cstdint>
#include <cstdlib>

#include <utility>

#include <exception>
#include <stdexcept>
}

export
{
#include <iterator>
#include <algorithm>

#include <string>
#include <cstring> // @@ Not in the proposal.

#include <vector>
}

#if defined(_MSC_VER) || defined(__clang__)
export
{
#include <cctype>
#include <iosfwd>
#include <istream>
#include <ostream>
#include <iostream>
#include <sstream>
#include <fstream>
}
#endif