summaryrefslogtreecommitdiffstats
path: root/third_party/rust/redox_syscall/src/scheme/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/redox_syscall/src/scheme/mod.rs')
-rw-r--r--third_party/rust/redox_syscall/src/scheme/mod.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/redox_syscall/src/scheme/mod.rs b/third_party/rust/redox_syscall/src/scheme/mod.rs
new file mode 100644
index 0000000000..66f8fc76da
--- /dev/null
+++ b/third_party/rust/redox_syscall/src/scheme/mod.rs
@@ -0,0 +1,9 @@
+pub use self::scheme::Scheme;
+pub use self::scheme_mut::SchemeMut;
+pub use self::scheme_block::SchemeBlock;
+pub use self::scheme_block_mut::SchemeBlockMut;
+
+mod scheme;
+mod scheme_mut;
+mod scheme_block;
+mod scheme_block_mut;