1 //! This module contains type aliases for C's fixed-width integer types .
2 //!
3 //! These aliases are deprecated: use the Rust types instead.
4 
5 #[deprecated(since = "0.2.55", note = "Use i8 instead.")]
6 pub type int8_t = i8;
7 #[deprecated(since = "0.2.55", note = "Use i16 instead.")]
8 pub type int16_t = i16;
9 #[deprecated(since = "0.2.55", note = "Use i32 instead.")]
10 pub type int32_t = i32;
11 #[deprecated(since = "0.2.55", note = "Use i64 instead.")]
12 pub type int64_t = i64;
13 #[deprecated(since = "0.2.55", note = "Use u8 instead.")]
14 pub type uint8_t = u8;
15 #[deprecated(since = "0.2.55", note = "Use u16 instead.")]
16 pub type uint16_t = u16;
17 #[deprecated(since = "0.2.55", note = "Use u32 instead.")]
18 pub type uint32_t = u32;
19 #[deprecated(since = "0.2.55", note = "Use u64 instead.")]
20 pub type uint64_t = u64;
21