• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //! Tests for [`rustix::rand`].
2 
3 #![cfg(feature = "rand")]
4 #![cfg(not(windows))]
5 #![cfg_attr(target_os = "wasi", feature(wasi_ext))]
6 #![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
7 
8 #[cfg(any(linux_raw, all(libc, target_os = "linux")))]
9 mod getrandom;
10