]> git.proxmox.com Git - rustc.git/blame - src/vendor/libc/src/unix/bsd/netbsdlike/netbsd/other/mod.rs
New upstream version 1.17.0+dfsg1
[rustc.git] / src / vendor / libc / src / unix / bsd / netbsdlike / netbsd / other / mod.rs
CommitLineData
476ff2be 1cfg_if! {
8bb4bdeb
XL
2 if #[cfg(any(target_arch = "sparc64",
3 target_arch = "x86_64"))] {
476ff2be
SL
4 mod b64;
5 pub use self::b64::*;
6 } else if #[cfg(any(target_arch = "arm",
7 target_arch = "powerpc",
8 target_arch = "x86"))] {
9 mod b32;
10 pub use self::b32::*;
11 } else {
12 // Unknown target_arch
13 }
14}