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 c1068cd commit ae81dc8Copy full SHA for ae81dc8
src/unix/newlib/aarch64/mod.rs
@@ -0,0 +1,5 @@
1
+pub type c_char = u8;
2
+pub type wchar_t = u32;
3
+
4
+pub type c_long = i64;
5
+pub type c_ulong = u64;
src/unix/newlib/mod.rs
@@ -679,6 +679,9 @@ cfg_if! {
679
if #[cfg(target_arch = "arm")] {
680
mod arm;
681
pub use self::arm::*;
682
+ } else if #[cfg(target_arch = "aarch64")] {
683
+ mod aarch64;
684
+ pub use self::aarch64::*;
685
} else {
686
// Only tested on ARM so far. Other platforms might have different
687
// definitions for types and constants.
0 commit comments