1 #![allow(bad_style, improper_ctypes, unused, deprecated)] 2 3 use libc::*; 4 5 #[cfg(target_os = "linux")] 6 include!(concat!(env!("OUT_DIR"), "/linux_elf.rs")); 7 8 #[cfg(not(target_os = "linux"))] main()9 fn main() { 10 println!("PASSED 0 tests"); 11 } 12