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