We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f84b09d commit 88281a5Copy full SHA for 88281a5
1 file changed
simplicity-sys/src/ffi.rs
@@ -21,10 +21,8 @@ pub type c_size_t = usize;
21
pub type c_uint_fast8_t = u8;
22
#[cfg(any(target_os = "macos", target_os = "ios"))]
23
pub type c_uint_fast16_t = u16;
24
-#[cfg(any(target_os = "windows", target_os = "android"))]
+#[cfg(any(target_os = "windows", target_os = "android", target_arch = "wasm32"))]
25
pub type c_uint_fast16_t = u32;
26
-#[cfg(target_arch = "wasm32")]
27
-pub type c_uint_fast16_t = u16;
28
#[cfg(not(any(
29
target_os = "macos",
30
target_os = "ios",
0 commit comments