about summary refs log tree commit diff
path: root/src/libstd/os
diff options
context:
space:
mode:
authorJethro Beekman <jethro@fortanix.com>2018-12-25 13:11:04 +0530
committerJethro Beekman <jethro@fortanix.com>2018-12-25 13:11:04 +0530
commitbe565615dbed87a0d3fcdb7f62b2080b3dc288fa (patch)
treefd49ea1e8e61dc68a7e081caf509021cbdff0c31 /src/libstd/os
parent505167d7c58f68170118f96436c85e0587e6d3f5 (diff)
downloadrust-be565615dbed87a0d3fcdb7f62b2080b3dc288fa.tar.gz
rust-be565615dbed87a0d3fcdb7f62b2080b3dc288fa.zip
Add `io` and `arch` modules to `std::os::fortanix_sgx`
Diffstat (limited to 'src/libstd/os')
-rw-r--r--src/libstd/os/fortanix_sgx/mod.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/os/fortanix_sgx/mod.rs b/src/libstd/os/fortanix_sgx/mod.rs
index 825e7f359d6..0f326020434 100644
--- a/src/libstd/os/fortanix_sgx/mod.rs
+++ b/src/libstd/os/fortanix_sgx/mod.rs
@@ -65,3 +65,5 @@ pub mod usercalls {
 pub mod mem {
     pub use sys::abi::mem::*;
 }
+
+pub use sys::ext::{io, arch};