summaryrefslogtreecommitdiffstats
path: root/vendor/rustix/src/rand/mod.rs
blob: e767c590d29a03870ecdc407e0dd484dccce23dc (plain)
1
2
3
4
5
6
7
//! Random-related operations.

#[cfg(linux_kernel)]
mod getrandom;

#[cfg(linux_kernel)]
pub use getrandom::{getrandom, GetRandomFlags};