• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //! Tests for [`rustix::param`].
2 
3 #![cfg(feature = "param")]
4 #![cfg(not(windows))]
5 #![cfg_attr(target_os = "wasi", feature(wasi_ext))]
6 #![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
7 #![cfg_attr(core_c_str, feature(core_c_str))]
8 
9 #[cfg(not(target_os = "wasi"))]
10 #[macro_use]
11 mod weak;
12 
13 #[cfg(not(target_os = "wasi"))]
14 mod auxv;
15