Skip to main content

relibc/header/sys_syscall/
mod.rs

1//! `sys/syscall.h` implementation.
2//!
3//! Non-POSIX, see <https://www.man7.org/linux/man-pages/man2/syscall.2.html>.
4
5// copied from sc crate
6#[cfg(all(target_os = "linux", target_arch = "aarch64"))]
7pub mod aarch64;
8#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
9pub mod x86_64;