We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2a80700 + 26afb61 commit a7932acCopy full SHA for a7932ac
src/lib.rs
@@ -123,6 +123,12 @@ cfg_if! {
123
124
mod vxworks;
125
pub use vxworks::*;
126
+ } else if #[cfg(target_os = "solid_asp3")] {
127
+ mod fixed_width_ints;
128
+ pub use fixed_width_ints::*;
129
+
130
+ mod solid;
131
+ pub use solid::*;
132
} else if #[cfg(unix)] {
133
mod fixed_width_ints;
134
pub use fixed_width_ints::*;
src/solid/aarch64.rs
@@ -0,0 +1,4 @@
1
+pub type c_char = i8;
2
+pub type wchar_t = i16;
3
+pub type c_long = i64;
4
+pub type c_ulong = u64;
src/solid/arm.rs
+pub type c_long = i32;
+pub type c_ulong = u32;
0 commit comments