libc/new/linux_uapi/linux/types.rs
1//! * Header: `uapi/linux/types.h`
2//! * Header: `uapi/asm-generic/int-ll64.h`
3
4use crate::prelude::*;
5
6/* Definitions from `asm/types.h` -> `asm-generic/types.h` -> `asm-generic/int-ll64.h` */
7
8pub type __u8 = c_uchar;
9
10pub type __u16 = c_ushort;
11pub type __s16 = c_short;
12
13pub type __u32 = c_uint;
14pub type __s32 = c_int;
15
16pub type __s64 = c_longlong;
17pub type __u64 = c_ulonglong;