rustix/rand/
mod.rs

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

#[cfg(linux_kernel)]
mod getrandom;

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