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

Move 64-bit-specific NetBSD stuff around

parent c6799c5b
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 = ::c_uint;
pub type suseconds_t = ::c_int;
pub type dev_t = u64;
......@@ -615,3 +613,6 @@ extern {
locale: *const ::c_char,
base: ::locale_t) -> ::locale_t;
}
mod other;
pub use self::other::*;
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 {
// 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