diff options
Diffstat (limited to 'libc/src/unix/newlib/arm/mod.rs')
-rw-r--r-- | libc/src/unix/newlib/arm/mod.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/src/unix/newlib/arm/mod.rs b/libc/src/unix/newlib/arm/mod.rs new file mode 100644 index 0000000..372a48c --- /dev/null +++ b/libc/src/unix/newlib/arm/mod.rs @@ -0,0 +1,5 @@ +pub type c_char = u8; +pub type wchar_t = u32; + +pub type c_long = i32; +pub type c_ulong = u32; |