mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-25 06:31:32 +00:00
add structure for cross-platform wasi syscall implementations
This commit is contained in:
11
lib/wasi/src/syscalls/unix/mod.rs
Normal file
11
lib/wasi/src/syscalls/unix/mod.rs
Normal file
@ -0,0 +1,11 @@
|
||||
#[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::*;
|
Reference in New Issue
Block a user