//! Defines types found in various posix_types.h files.
//!
//! If unsure, check include/uapi/asm-generic/posix_types.h **first**, then /arch/*/include/uapi/asm/posix_types.h
//!
//! For the best result, use http://lxr.free-electrons.com
///A type that defines microseconds. Since you're using either SPARC or (pa)RISC, it is a c_int
pub type suseconds_t = c_int;
///A type that defines microseconds. You're using a "regular" processor, so it is a c_long
pub type suseconds_t = c_long;
///A type that defines a clock ID. As of 4.1, this is always c_int
pub type clockid_t = c_int;