xref: /third_party/rust/crates/rustix/src/rand/mod.rs (revision b8a62b91)
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