• 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(target_os = "linux")]
7 include!(concat!(env!("OUT_DIR"), "/linux_ipv6.rs"));
8 
9 #[cfg(not(target_os = "linux"))]
main()10 fn main() {
11     println!("PASSED 0 tests");
12 }
13