From 290ea7840c979e38a2108030a99e7e9c61f40a8c Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 23 Nov 2017 11:43:02 +0200 Subject: Restructure and install std-detect.hxx We have to install this header since it needs to be included'able during module sidebuilds. --- libstd-modules/std-io.mxx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 libstd-modules/std-io.mxx (limited to 'libstd-modules/std-io.mxx') diff --git a/libstd-modules/std-io.mxx b/libstd-modules/std-io.mxx new file mode 100644 index 0000000..701e1b9 --- /dev/null +++ b/libstd-modules/std-io.mxx @@ -0,0 +1,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 +#include +#include +#include +#include +#include +#include +} + +#endif -- cgit v1.1