From cb39828ecd7ea5d2eac3076ad3dd1b6ef05e10d3 Mon Sep 17 00:00:00 2001 From: Daniel Mueller Date: Sun, 26 Mar 2017 17:07:34 -0700 Subject: Import subrepo libc/:libc at 05a2d197356ef253dfd985166576619ac9b6947f --- libc/src/unix/bsd/netbsdlike/netbsd/other/mod.rs | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 libc/src/unix/bsd/netbsdlike/netbsd/other/mod.rs (limited to 'libc/src/unix/bsd/netbsdlike/netbsd/other/mod.rs') diff --git a/libc/src/unix/bsd/netbsdlike/netbsd/other/mod.rs b/libc/src/unix/bsd/netbsdlike/netbsd/other/mod.rs new file mode 100644 index 0000000..3a9bf08 --- /dev/null +++ b/libc/src/unix/bsd/netbsdlike/netbsd/other/mod.rs @@ -0,0 +1,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 + } +} -- cgit v1.2.1