File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ macro_rules! type_alias {
10
10
} => {
11
11
#[ doc = include_str!( $Docfile) ]
12
12
$( $Cfg ) *
13
- #[ stable( feature = "core_ffi_c" , since = "1.64.0" ) ]
14
13
pub type $Alias = $Real;
15
14
}
16
15
}
@@ -154,21 +153,18 @@ mod c_long_definition {
154
153
///
155
154
/// This type is currently always [`usize`], however in the future there may be
156
155
/// platforms where this is not the case.
157
- #[ unstable( feature = "c_size_t" , issue = "88345" ) ]
158
156
pub type c_size_t = usize ;
159
157
160
158
/// Equivalent to C's `ptrdiff_t` type, from `stddef.h` (or `cstddef` for C++).
161
159
///
162
160
/// This type is currently always [`isize`], however in the future there may be
163
161
/// platforms where this is not the case.
164
- #[ unstable( feature = "c_size_t" , issue = "88345" ) ]
165
162
pub type c_ptrdiff_t = isize ;
166
163
167
164
/// Equivalent to C's `ssize_t` (on POSIX) or `SSIZE_T` (on Windows) type.
168
165
///
169
166
/// This type is currently always [`isize`], however in the future there may be
170
167
/// platforms where this is not the case.
171
- #[ unstable( feature = "c_size_t" , issue = "88345" ) ]
172
168
pub type c_ssize_t = isize ;
173
169
174
170
mod c_int_definition {
You can’t perform that action at this time.
0 commit comments