diff options
author | Daniel Mueller <deso@posteo.net> | 2019-11-01 07:42:33 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-11-01 07:42:33 -0700 |
commit | 49be10a8179165d24bbb8eb3490c4ca6f94b42c4 (patch) | |
tree | 642978648e57ba8b162a7378e8754df85ca83b37 /libc/src/fixed_width_ints.rs | |
parent | 9f3991a74fa5124e298582afa60b229dd005be40 (diff) | |
download | nitrocli-49be10a8179165d24bbb8eb3490c4ca6f94b42c4.tar.gz nitrocli-49be10a8179165d24bbb8eb3490c4ca6f94b42c4.tar.bz2 |
Update libc crate to 0.2.66
This change updates the libc crate to version 0.2.66.
Import subrepo libc/:libc at 4f11029a68040c90acf771976b019c1ef273a8cd
Diffstat (limited to 'libc/src/fixed_width_ints.rs')
-rw-r--r-- | libc/src/fixed_width_ints.rs | 40 |
1 files changed, 8 insertions, 32 deletions
diff --git a/libc/src/fixed_width_ints.rs b/libc/src/fixed_width_ints.rs index 0c25d28..0146408 100644 --- a/libc/src/fixed_width_ints.rs +++ b/libc/src/fixed_width_ints.rs @@ -2,43 +2,19 @@ //! //! These aliases are deprecated: use the Rust types instead. -#[deprecated( - since = "0.2.55", - note = "Use i8 instead." -)] +#[deprecated(since = "0.2.55", note = "Use i8 instead.")] pub type int8_t = i8; -#[deprecated( - since = "0.2.55", - note = "Use i16 instead." -)] +#[deprecated(since = "0.2.55", note = "Use i16 instead.")] pub type int16_t = i16; -#[deprecated( - since = "0.2.55", - note = "Use i32 instead." -)] +#[deprecated(since = "0.2.55", note = "Use i32 instead.")] pub type int32_t = i32; -#[deprecated( - since = "0.2.55", - note = "Use i64 instead." -)] +#[deprecated(since = "0.2.55", note = "Use i64 instead.")] pub type int64_t = i64; -#[deprecated( - since = "0.2.55", - note = "Use u8 instead." -)] +#[deprecated(since = "0.2.55", note = "Use u8 instead.")] pub type uint8_t = u8; -#[deprecated( - since = "0.2.55", - note = "Use u16 instead." -)] +#[deprecated(since = "0.2.55", note = "Use u16 instead.")] pub type uint16_t = u16; -#[deprecated( - since = "0.2.55", - note = "Use u32 instead." -)] +#[deprecated(since = "0.2.55", note = "Use u32 instead.")] pub type uint32_t = u32; -#[deprecated( - since = "0.2.55", - note = "Use u64 instead." -)] +#[deprecated(since = "0.2.55", note = "Use u64 instead.")] pub type uint64_t = u64; |