extern crate bwapi_sys;
fn main() {
unsafe { bwapi_sys::BWAPIC_getClient() };
}
#[cfg(windows)]
#[no_mangle]
pub extern "C" fn _Unwind_Resume() -> ! {
use std::process;
process::abort();
}
#[cfg(windows)]
#[no_mangle]
pub extern "C" fn _Unwind_RaiseException() -> ! {
use std::process;
process::abort();
}