Removed the CIChar type.

This commit is contained in:
Myrddin Dundragon 2019-01-20 19:45:08 -05:00
parent 53c8590a40
commit 9de70a24f7
2 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@ pub type CChar = u8;
pub type CChar = i8;
pub type CIChar = i8;
pub type CUChar = u8;

View File

@ -28,7 +28,7 @@ mod raw;
pub use self::c_types::{CChar, CIChar, CUChar};
pub use self::c_types::{CChar, CUChar};
pub use self::c_types::{CShort, CUShort, CInt, CUInt, CLong, CULong};
pub use self::c_types::{CLongLong, CULongLong, CFloat, CDouble};
pub use self::c_types::{CVoid, CReturnVoid};