summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/rand/mod.rs
blob: b8a1320a86c0d4a73e6deaadfcbc5f82c0118fc5 (plain)
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};