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