1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// SPDX-License-Identifier: MIT
//
// Copyright (c) 2022 Robert Oleynik

/// Shorthand for [`std::process::exit`]
///
/// # Usage
///
/// ```rust
/// fail!();
/// // Shorthand for
/// std::process::exit(1);
/// ```
///
/// or
///
/// ```rust
/// fail!(/* exit code */);
/// // Shorthand for
/// std::process::exit(/* exit code */);
/// ```
#[macro_export]
macro_rules! fail {
	() => {
		::std::process::exit(1)
	};
	( $code:expr ) => {
		::std::process::exit($code)
	};
}