flutils 0.5.0

Things for fledger that didn't fit anywhere else
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(target_arch = "wasm32")]
mod wasm;
#[cfg(target_arch = "wasm32")]
pub use wasm::*;

#[cfg(not(target_arch = "wasm32"))]
mod libc;
#[cfg(not(target_arch = "wasm32"))]
pub use libc::*;