aboutsummaryrefslogtreecommitdiff
path: root/libc/src/unix/bsd/netbsdlike/openbsdlike/other/mod.rs
blob: e4087da7bc235195fbc63c6ab76643d9bbc2dbe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
cfg_if! {
    if #[cfg(target_arch = "x86_64")] {
        mod b64;
        pub use self::b64::*;
    } else if #[cfg(target_arch = "x86")] {
        mod b32;
        pub use self::b32::*;
    } else {
        // Unknown target_arch
    }
}