relibc/header/bits_suseconds-t/mod.rs
1#[cfg(target_os = "linux")]
2use crate::platform::types::c_long;
3
4#[cfg(not(target_os = "linux"))]
5use crate::platform::types::c_int;
6
7#[cfg(target_os = "linux")]
8#[allow(non_camel_case_types)]
9/// Used for time in microseconds.
10pub type suseconds_t = c_long;
11#[cfg(not(target_os = "linux"))]
12#[allow(non_camel_case_types)]
13/// Used for time in microseconds.
14pub type suseconds_t = c_int;