Skip to content
Snippets Groups Projects
Commit 00648e11 authored by Sébastien Marie's avatar Sébastien Marie
Browse files

Make openbsdlike to support 64 and 32 bits archs

parent e324291a
No related branches found
No related tags found
No related merge requests found
pub type c_long = i64;
pub type c_ulong = u64;
pub type clock_t = i64;
pub type suseconds_t = i64;
pub type dev_t = i32;
......@@ -448,3 +446,6 @@ cfg_if! {
// Unknown target_os
}
}
mod other;
pub use self::other::*;
pub type c_long = i32;
pub type c_ulong = u32;
pub type c_long = i64;
pub type c_ulong = u64;
cfg_if! {
if #[cfg(target_arch = "x86_64")] {
mod b64;
pub use self::b64::*;
} else if #[cfg(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