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