##// END OF EJS Templates
merge: with stable
merge: with stable

File last commit:

r47174:ca3f73cc default
r47433:6f4a481f merge default
Show More
exitcode.rs
10 lines | 214 B | application/rls-services+xml | RustLexer
pub type ExitCode = i32;
/// Successful exit
pub const OK: ExitCode = 0;
/// Generic abort
pub const ABORT: ExitCode = 255;
/// Command or feature not implemented by rhg
pub const UNIMPLEMENTED: ExitCode = 252;