ifstructs 0.1.0

A Rust library with native bindings to unix if* structures
Documentation
1
2
3
4
5
6
7
8
9
10
11
cfg_if! {
    if #[cfg(target_os = "openbsd")] {
        mod openbsd;
        pub use self::openbsd::*;
    } else if #[cfg(target_os = "bitrig")] {
        mod bitrig;
        pub use self::bitrig::*;
    } else {
        // Unknown target_os
    }
}