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

openbsd: add sparc64 support

parent 3311ba8a
No related branches found
No related tags found
No related merge requests found
......@@ -1438,6 +1438,9 @@ cfg_if! {
} else if #[cfg(target_arch = "aarch64")] {
mod aarch64;
pub use self::aarch64::*;
} else if #[cfg(target_arch = "sparc64")] {
mod sparc64;
pub use self::sparc64::*;
} else {
// Unknown target_arch
}
......
pub type c_long = i64;
pub type c_ulong = u64;
pub type c_char = i8;
#[doc(hidden)]
pub const _ALIGNBYTES: usize = 0xf;
pub const _MAX_PAGE_SHIFT: u32 = 13;
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