1#![allow(non_upper_case_globals)]
2use libc::c_long;
3
4#[cfg(target_arch = "aarch64")]
5pub const SYS_statx: c_long = 291;
6
7#[cfg(target_arch = "arm")]
8pub const SYS_statx: c_long = 397;
9
10#[cfg(target_arch = "x86")]
11pub const SYS_statx: c_long = 383;
12
13#[cfg(target_arch = "mips")]
14pub const SYS_statx: c_long = 4366;
15
16#[cfg(target_arch = "mips64")]
17pub const SYS_statx: c_long = 5326;
18
19#[cfg(target_arch = "mipsn32")]
20pub const SYS_statx: c_long = 6330;
21
22#[cfg(target_arch = "or1k")]
23pub const SYS_statx: c_long = 291;
24
25#[cfg(target_arch = "powerpc")]
26pub const SYS_statx: c_long = 383;
27
28#[cfg(target_arch = "powerpc64")]
29pub const SYS_statx: c_long = 383;
30
31#[cfg(target_arch = "s390x")]
32pub const SYS_statx: c_long = 379;
33
34#[cfg(target_arch = "x32")]
35pub const SYS_statx: c_long = 0x40000000 + 332;
36
37#[cfg(target_arch = "x86_64")]
38pub const SYS_statx: c_long = 332;