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 3cc7a9c commit ef7c089Copy full SHA for ef7c089
src/zephyr/mod.rs
@@ -12,6 +12,10 @@ pub type uint16_t = u16;
12
pub type uint32_t = u32;
13
pub type uint64_t = u64;
14
15
+#[cfg(target_arch = "aarch64")]
16
+pub type c_char = u8;
17
+#[cfg(not(target_arch = "aarch64"))]
18
+pub type c_char = i8;
19
pub type c_schar = i8;
20
pub type c_uchar = u8;
21
pub type c_short = i16;
0 commit comments