// Don't optimize the alloc crate away due to it being otherwise unused.
// https://github.com/rust-lang/rust/issues/64402
#[cfg(feature ="performance-memory-allocator")]externcrate uv_performance_memory_allocator;usestd::process::ExitCode;useuv::main as uv_main;#[allow(unsafe_code)]fnmain()-> ExitCode{// SAFETY: This is safe because we are running it early in `main` before spawning any threads.
unsafe{uv_main(std::env::args_os())}}