File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -19,18 +19,36 @@ pub type c_int = i32;
1919pub type c_uint = u32 ;
2020pub type c_size_t = usize ;
2121pub type c_uint_fast8_t = u8 ;
22- #[ cfg( all(
23- any( target_arch = "wasm32" , target_arch = "aarch64" ) ,
24- not( target_os = "windows" )
25- ) ) ]
22+ #[ cfg( any( target_os = "macos" , target_os = "ios" ) ) ]
2623pub type c_uint_fast16_t = u16 ;
27- #[ cfg( target_os = "windows" ) ]
24+ #[ cfg( any ( target_os = "windows" , target_os = "android" ) ) ]
2825pub type c_uint_fast16_t = u32 ;
29- #[ cfg( not( any( target_arch = "wasm32" , target_arch = "aarch64" , target_os = "windows" ) ) ) ]
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" ,
31+ target_os = "windows" ,
32+ target_os = "android" ,
33+ target_arch = "wasm32"
34+ ) ) ) ]
3035pub type c_uint_fast16_t = usize ;
31- #[ cfg( any( target_arch = "wasm32" , target_arch = "aarch64" , target_os = "windows" ) ) ]
36+
37+ #[ cfg( any(
38+ target_os = "macos" ,
39+ target_os = "ios" ,
40+ target_os = "windows" ,
41+ target_os = "android" ,
42+ target_arch = "wasm32"
43+ ) ) ]
3244pub type c_uint_fast32_t = u32 ;
33- #[ cfg( not( any( target_arch = "wasm32" , target_arch = "aarch64" , target_os = "windows" ) ) ) ]
45+ #[ cfg( not( any(
46+ target_os = "macos" ,
47+ target_os = "ios" ,
48+ target_os = "windows" ,
49+ target_os = "android" ,
50+ target_arch = "wasm32"
51+ ) ) ) ]
3452pub type c_uint_fast32_t = usize ;
3553#[ cfg( target_arch = "wasm32" ) ]
3654pub type c_uint_fast64_t = u64 ;
You can’t perform that action at this time.
0 commit comments