1//! Random-related operations. 2 3#[cfg(any(linux_raw, all(libc, target_os = "linux")))] 4mod getrandom; 5 6#[cfg(any(linux_raw, all(libc, target_os = "linux")))] 7pub use getrandom::{getrandom, GetRandomFlags}; 8