diff options
| author | Henry Jiang <henry.jiang1@ibm.com> | 2024-10-22 20:18:11 -0400 |
|---|---|---|
| committer | Henry Jiang <henry.jiang1@ibm.com> | 2024-10-22 20:18:11 -0400 |
| commit | 8ca39104f1af6871ccc6119ddfda37aa76f628fb (patch) | |
| tree | 81c24df27769553a53ed52a2db89f488b6a39733 /library/std/src/random.rs | |
| parent | 86d69c705a552236a622eee3fdea94bf13c5f102 (diff) | |
| download | rust-8ca39104f1af6871ccc6119ddfda37aa76f628fb.tar.gz rust-8ca39104f1af6871ccc6119ddfda37aa76f628fb.zip | |
AIX use /dev/urandom for impl
Diffstat (limited to 'library/std/src/random.rs')
| -rw-r--r-- | library/std/src/random.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/random.rs b/library/std/src/random.rs index cdb88c795bf..45f51dd37b0 100644 --- a/library/std/src/random.rs +++ b/library/std/src/random.rs @@ -38,7 +38,7 @@ use crate::sys::random as sys; /// Vita | `arc4random_buf` /// Hermit | `read_entropy` /// Horizon | `getrandom` shim -/// Hurd, L4Re, QNX | `/dev/urandom` +/// AIX, Hurd, L4Re, QNX | `/dev/urandom` /// Redox | `/scheme/rand` /// RTEMS | [`arc4random_buf`](https://docs.rtems.org/branches/master/bsp-howto/getentropy.html) /// SGX | [`rdrand`](https://en.wikipedia.org/wiki/RDRAND) |
