rsix 0.23.4

Safe Rust ("rs") bindings to POSIX-like/Unix-like/Linux ("ix") syscalls
Documentation
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};