summaryrefslogtreecommitdiffstats
path: root/third_party/rust/lucet-runtime-internals-wasmsbx/src/sysdeps/mod.rs
blob: 8f9247c4f13e628023d30f7604134d5a93829f70 (plain)
1
2
3
4
5
6
7
8
9
10
11
#[cfg(target_os = "macos")]
mod macos;

#[cfg(target_os = "linux")]
mod linux;

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

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