We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bdcca9 commit 5954df7Copy full SHA for 5954df7
simplicity-sys/src/ffi.rs
@@ -19,13 +19,13 @@ pub type c_int = i32;
19
pub type c_uint = u32;
20
pub type c_size_t = usize;
21
pub type c_uint_fast8_t = u8;
22
-#[cfg(target_arch = "wasm32")]
+#[cfg(any(target_arch = "wasm32", target_arch = "aarch64"))]
23
pub type c_uint_fast16_t = u16;
24
-#[cfg(not(target_arch = "wasm32"))]
+#[cfg(not(any(target_arch = "wasm32", target_arch = "aarch64")))]
25
pub type c_uint_fast16_t = usize;
26
27
pub type c_uint_fast32_t = u32;
28
29
pub type c_uint_fast32_t = usize;
30
#[cfg(target_arch = "wasm32")]
31
pub type c_uint_fast64_t = u64;
0 commit comments