diff --git a/src/c_types.rs b/src/c_types.rs index b840c37..1345ae5 100644 --- a/src/c_types.rs +++ b/src/c_types.rs @@ -19,7 +19,6 @@ pub type CChar = u8; pub type CChar = i8; -pub type CIChar = i8; pub type CUChar = u8; diff --git a/src/lib.rs b/src/lib.rs index 875f12b..056cb2b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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};