#[cfg(any(target_os="linux",
target_os="android"))]
fn main(){
println!("cargo:rustc-link-lib=dl");
}
#[cfg(any(target_os="freebsd",
target_os="dragonfly"))]
fn main(){
println!("cargo:rustc-link-lib=c");
}
#[cfg(any(target_os="openbsd",
target_os="bitrig",
target_os="netbsd",
target_os="macos",
target_os="ios"))]
fn main(){
}
#[cfg(windows)]
fn main(){
}