Files
RedBear-OS/src/header/bits_size-t/mod.rs
T
2026-06-24 11:52:15 +01:00

10 lines
293 B
Rust

//! `size_t` from `stddef.h` implementation.
//!
//! See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/stddef.h.html>.
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;