//! `size_t` from `stddef.h` implementation. //! //! See . 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;