6 lines
109 B
Rust
6 lines
109 B
Rust
use std::process;
|
|
|
|
pub fn fatal(msg: String) -> ! {
|
|
eprintln!("fatal: {}", msg);
|
|
process::exit(-1);
|
|
} |