Skip to content

Commit

Permalink
Reference tracking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
thomcc committed Aug 25, 2021
1 parent 33c71ac commit 5b25de5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions library/std/src/os/raw/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,12 @@ pub use core::ffi::c_void;
///
/// This type is currently always [`usize`], however in the future there may be
/// platforms where this is not the case.
#[unstable(feature = "c_size_t", issue = "none")]
#[unstable(feature = "c_size_t", issue = "88345")]
pub type c_size_t = usize;

/// Equivalent to C's `ssize_t` type, from `stddef.h` (or `cstddef` for C++).
///
/// This type is currently always [`isize`], however in the future there may be
/// platforms where this is not the case.
#[unstable(feature = "c_size_t", issue = "none")]
#[unstable(feature = "c_size_t", issue = "88345")]
pub type c_ssize_t = isize;

0 comments on commit 5b25de5

Please sign in to comment.