1 2 3 4 5 6 7 8 9 10 11 12
#![cfg_attr(not(feature = "std"), no_std)] extern crate alloc; #[cfg(feature = "std")] extern crate std; mod mmap; pub use mmap::*; mod error; pub use error::*;