pwd_grp/
conditional.rs

1//! Conditional compilation
2
3#[allow(unused_macros)] // might be redefined to expand to nothing
4macro_rules! if_cfg_getresuid { { $($y:tt)* } => { $($y)* } }
5
6// Sadly we can't use this in struct MockableLibcFunctions in lmockable.rs
7#[cfg(any(target_os = "macos", target_os = "netbsd"))]
8macro_rules! if_cfg_getresuid { { $($y:tt)* } => { } }