ckb_ssri_std/utils/syscalls/mod.rs
1// re-export to maintain compatible with old versions
2pub use ckb_std::error::SysError;
3
4#[cfg(not(feature = "native-simulator"))]
5mod native;
6#[cfg(not(feature = "native-simulator"))]
7pub use native::*;
8
9#[cfg(feature = "native-simulator")]
10mod simulator;
11#[cfg(feature = "native-simulator")]
12pub use simulator::*;