Files
wasmer/lib/wasi/src/syscalls/unix/mod.rs

12 lines
181 B
Rust
Raw Normal View History

#[cfg(target_os = "linux")]
pub mod linux;
#[cfg(target_os = "macos")]
pub mod macos;
#[cfg(target_os = "linux")]
pub use linux::*;
#[cfg(target_os = "macos")]
pub use macos::*;