1
0
Fork 0
forked from wry/wry
wry/crates/utils/src/compat.rs

11 lines
259 B
Rust

use {cfg_if::cfg_if, uapi::c};
cfg_if! {
if #[cfg(target_env = "musl")] {
pub type IoctlNumber = c::c_int;
pub type IovLength = c::c_int;
} else {
pub type IoctlNumber = c::c_ulong;
pub type IovLength = usize;
}
}