1 //! Random-related operations. 2 3 #[cfg(any(linux_raw, all(libc, target_os = "linux")))] 4 mod getrandom; 5 6 #[cfg(any(linux_raw, all(libc, target_os = "linux")))] 7 pub use getrandom::{getrandom, GetRandomFlags}; 8