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

NetBSD: add basic types for aarch64

parent 27114a96
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 c_char = u8;
......@@ -1110,7 +1110,10 @@ extern {
}
cfg_if! {
if #[cfg(target_arch = "arm")] {
if #[cfg(target_arch = "aarch64")] {
mod aarch64;
pub use self::aarch64::*;
} else if #[cfg(target_arch = "arm")] {
mod arm;
pub use self::arm::*;
} else if #[cfg(target_arch = "powerpc")] {
......
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