Reorganise hostcalls into submodules

This commit is contained in:
Jakub Konka
2019-05-17 23:29:19 +02:00
committed by Dan Gohman
parent b9871648b2
commit 14ba585edf
5 changed files with 814 additions and 803 deletions

10
src/hostcalls/mod.rs Normal file
View File

@@ -0,0 +1,10 @@
//! Hostcalls that implement
//! [WASI](https://github.com/CraneStation/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
mod fs;
mod fs_helpers;
mod misc;
mod sock;
pub use self::fs::*;
pub use self::misc::*;
pub use self::sock::*;