#![forbid(unsafe_code)]
#![cfg(target_os = "linux")]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
#[cfg(target_os = "linux")]
openssl_crypto_only::openssl_crypto_only!();
pub fn underhill_main() -> anyhow::Result<()> {
let argv0 = std::path::PathBuf::from(std::env::args_os().next().unwrap());
match argv0.file_name().unwrap().to_str().unwrap() {
"underhill-init" => underhill_init::main(),
"underhill-crash" => underhill_crash::main(),
"underhill-dump" => underhill_dump::main(),
_ => underhill_core::main(),
}
}