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