origin 0.26.2

Program startup and thread support written in Rust
Documentation
1
2
3
4
5
6
7
//! Decide whether to use the optimized-for-speed or optimized-for-size
//! implementations of `memset` etc.

#[cfg(not(feature = "optimize_for_size"))]
mod fast;
#[cfg(feature = "optimize_for_size")]
mod small;