#![allow(bad_style, improper_ctypes, unused, deprecated)]

extern crate libc;
use libc::*;

#[cfg(target_os = "linux")]
include!(concat!(env!("OUT_DIR"), "/linux_elf.rs"));

#[cfg(not(target_os = "linux"))]
fn main() {
    println!("PASSED 0 tests");
}