Skip to content
Snippets Groups Projects
Commit 07a0190b authored by Jonathan A. Kollasch's avatar Jonathan A. Kollasch
Browse files

Recognize 32-bit NetBSD

parent 09ba9f73
No related branches found
No related tags found
No related merge requests found
pub type c_long = i32;
pub type c_ulong = u32;
......@@ -2,6 +2,11 @@ cfg_if! {
if #[cfg(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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment