syscall-rs 0.0.3

Support crate for Linux system programming
Documentation
1
2
3
4
5
6
7
8
//!
//! This file is part of syscall-rs
//!

fn main() {
    #[cfg(not(any(target_os = "linux", target_os = "android")))]
    compile_error!("this crate is Linux only!");
}