rustix/backend/libc/system/
types.rs

1
2
3
4
5
6
7
8
use crate::backend::c;

/// `sysinfo`
#[cfg(linux_kernel)]
pub type Sysinfo = c::sysinfo;

#[cfg(not(target_os = "wasi"))]
pub(crate) type RawUname = c::utsname;