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