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