We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 507193a commit 5c416b4Copy full SHA for 5c416b4
std/src/random.rs
@@ -38,7 +38,7 @@ use crate::sys::random as sys;
38
/// Vita | `arc4random_buf`
39
/// Hermit | `read_entropy`
40
/// Horizon | `getrandom` shim
41
-/// Hurd, L4Re, QNX | `/dev/urandom`
+/// AIX, Hurd, L4Re, QNX | `/dev/urandom`
42
/// Redox | `/scheme/rand`
43
/// RTEMS | [`arc4random_buf`](https://docs.rtems.org/branches/master/bsp-howto/getentropy.html)
44
/// SGX | [`rdrand`](https://en.wikipedia.org/wiki/RDRAND)
std/src/sys/random/mod.rs
@@ -40,6 +40,7 @@ cfg_if::cfg_if! {
mod horizon;
pub use horizon::fill_bytes;
} else if #[cfg(any(
+ target_os = "aix",
target_os = "hurd",
45
target_os = "l4re",
46
target_os = "nto",
0 commit comments