1
2
3
4
5
6
7
//! Random-related operations.

#[cfg(any(linux_raw, all(libc, target_os = "linux")))]
mod getrandom;

#[cfg(any(linux_raw, all(libc, target_os = "linux")))]
pub use getrandom::{getrandom, GetRandomFlags};