We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9618da7 commit a43a89fCopy full SHA for a43a89f
library/std/src/sys/random/mod.rs
@@ -22,7 +22,7 @@ cfg_if::cfg_if! {
22
))] {
23
mod arc4random;
24
pub use arc4random::fill_bytes;
25
- } else if #[cfg(target_os = "emscripten")] {
+ } else if #[cfg(any(target_os = "emscripten", target_os = "rtems"))] {
26
mod getentropy;
27
pub use getentropy::fill_bytes;
28
} else if #[cfg(target_os = "espidf")] {
0 commit comments