Skip to main content

relibc/header/bits_size-t/
mod.rs

1//! `size_t` from `stddef.h` implementation.
2//!
3//! See <https://pubs.opengroup.org/onlinepubs/9799919799/basedefs/stddef.h.html>.
4
5use crate::platform::types::c_ulong;
6
7/// Unsigned integer type of the result of the sizeof operator.
8#[allow(non_camel_case_types)]
9pub type size_t = c_ulong;