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