Browse Source

Fix typos in c.odin

Ginger Bill 7 years ago
parent
commit
42312d9def
1 changed files with 2 additions and 2 deletions
  1. 2 2
      core/c.odin

+ 2 - 2
core/c.odin

@@ -5,10 +5,10 @@ c_bool           :: bool;
 c_char           :: u8;
 
 c_schar          :: i8;
-c_uchar          :: i8;
+c_uchar          :: u8;
 
 c_short          :: i16;
-c_ushort         :: i16;
+c_ushort         :: u16;
 
 c_int            :: i32;
 c_uint           :: u32;