Skip to content

Commit c70ddd4

Browse files
committed
kmc-solid: wchar_t is u32
1 parent 5e95cbb commit c70ddd4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/solid/aarch64.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pub type c_char = i8;
2-
pub type wchar_t = i16;
2+
pub type wchar_t = u32;
33
pub type c_long = i64;
44
pub type c_ulong = u64;

src/solid/arm.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
pub type c_char = i8;
2-
pub type wchar_t = i16;
2+
pub type wchar_t = u32;
33
pub type c_long = i32;
44
pub type c_ulong = u32;

0 commit comments

Comments
 (0)