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