]> git.proxmox.com Git - rustc.git/blob - src/liblibc/src/unix/bsd/netbsdlike/openbsdlike/other/mod.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / liblibc / src / unix / bsd / netbsdlike / openbsdlike / other / mod.rs
1 cfg_if! {
2 if #[cfg(target_arch = "x86_64")] {
3 mod b64;
4 pub use self::b64::*;
5 } else if #[cfg(target_arch = "x86")] {
6 mod b32;
7 pub use self::b32::*;
8 } else {
9 // Unknown target_arch
10 }
11 }