Skip to content

Commit b3dba42

Browse files
committed
fix problems found in testing
1 parent cc6ff32 commit b3dba42

File tree

7 files changed

+7
-3
lines changed

7 files changed

+7
-3
lines changed

src/vxworks/aarch64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pub type c_char = u8;
2+
pub type wchar_t = u32;
23
pub type c_long = i64;
34
pub type c_ulong = u64;

src/vxworks/arm.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pub type c_char = u8;
2+
pub type wchar_t = u32;
23
pub type c_long = i32;
34
pub type c_ulong = u32;

src/vxworks/armv7.rs

Lines changed: 0 additions & 2 deletions
This file was deleted.

src/vxworks/powerpc.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pub type c_char = u8;
2+
pub type wchar_t = u32;
23
pub type c_long = i32;
34
pub type c_ulong = u32;

src/vxworks/powerpc64.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pub type c_char = u8;
2+
pub type wchar_t = u32;
23
pub type c_long = i64;
34
pub type c_ulong = u64;

src/vxworks/x86.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
pub type c_char = i8;
2+
pub type wchar_t = i32;
23
pub type c_long = i32;
34
pub type c_ulong = u32;

src/vxworks/x86_64.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
pub type c_char = i8;
2+
pub type wchar_t = i32;
13
pub type c_long = i64;
24
pub type c_ulong = u64;
3-
pub type c_char = i8;

0 commit comments

Comments
 (0)