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