spiegel-keyman/developer/js/source/util/sysexits.ts

8 lines
229 B
TypeScript

/**
* Exit codes defined in <sysexits.h>:
* https://www.freebsd.org/cgi/man.cgi?query=sysexits&apropos=0&sektion=0&manpath=FreeBSD+4.3-RELEASE&format=html
*/
export const enum SysExits {
EX_USAGE = 64,
EX_DATAERR = 65,
};