We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27114a9 commit 0478c60Copy full SHA for 0478c60
src/unix/bsd/netbsdlike/netbsd/aarch64.rs
@@ -0,0 +1,3 @@
1
+pub type c_long = i64;
2
+pub type c_ulong = u64;
3
+pub type c_char = u8;
src/unix/bsd/netbsdlike/netbsd/mod.rs
@@ -1110,7 +1110,10 @@ extern {
1110
}
1111
1112
cfg_if! {
1113
- if #[cfg(target_arch = "arm")] {
+ if #[cfg(target_arch = "aarch64")] {
1114
+ mod aarch64;
1115
+ pub use self::aarch64::*;
1116
+ } else if #[cfg(target_arch = "arm")] {
1117
mod arm;
1118
pub use self::arm::*;
1119
} else if #[cfg(target_arch = "powerpc")] {
0 commit comments