// file : 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