Files
wasmer/lib/runtime/src/sys/mod.rs
2019-01-21 11:51:41 -08:00

12 lines
133 B
Rust

#[cfg(unix)]
mod unix;
#[cfg(windows)]
mod windows;
#[cfg(unix)]
pub use self::unix::*;
#[cfg(windows)]
pub use self::windows::*;