6 lines
160 B
Rust
6 lines
160 B
Rust
use crate::platform::types::c_ulong;
|
|
|
|
/// Unsigned integer type of the result of the sizeof operator.
|
|
#[allow(non_camel_case_types)]
|
|
pub type size_t = c_ulong;
|