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 ee3d057 commit dad866dCopy full SHA for dad866d
src/cloudabi/arm.rs
@@ -0,0 +1,4 @@
1
+pub type c_char = u8;
2
+pub type c_long = i32;
3
+pub type c_ulong = u32;
4
+pub type wchar_t = u32;
src/cloudabi/mod.rs
@@ -151,6 +151,9 @@ cfg_if! {
151
if #[cfg(target_arch = "aarch64")] {
152
mod aarch64;
153
pub use self::aarch64::*;
154
+ } else if #[cfg(any(target_arch = "arm"))] {
155
+ mod arm;
156
+ pub use self::arm::*;
157
} else if #[cfg(any(target_arch = "x86"))] {
158
mod x86;
159
pub use self::x86::*;
0 commit comments