From 9de70a24f7cda870f9123a16d29c36be82545938 Mon Sep 17 00:00:00 2001 From: Jason Travis Smith Date: Sun, 20 Jan 2019 19:45:08 -0500 Subject: [PATCH] Removed the CIChar type. --- src/c_types.rs | 1 - src/lib.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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};