Files
RedBear-OS/src/header/bits_size-t/mod.rs
T
2026-05-08 14:59:27 +01:00

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;