memsec 0.7.0

Rust implementation `libsodium/utils`.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! allocext
//! OS Specific allocation
//!
//!
#![cfg(feature = "alloc_ext")]

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

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