blob: 4a0936d6c0bcdf8c788fde2eba2ca5003e1422a5 (
plain)
1
2
3
4
5
6
7
|
//! Random-related operations.
#[cfg(any(target_os = "android", target_os = "linux"))]
mod getrandom;
#[cfg(any(target_os = "android", target_os = "linux"))]
pub use getrandom::{getrandom, GetRandomFlags};
|