diff options
Diffstat (limited to 'compat')
-rw-r--r-- | compat/sysexits.hpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/compat/sysexits.hpp b/compat/sysexits.hpp new file mode 100644 index 00000000..33f19b9d --- /dev/null +++ b/compat/sysexits.hpp @@ -0,0 +1,14 @@ +#pragma once + +#include <cstdlib> // for EXIT_SUCCESS, EXIT_FAILRUE + +/* FreeBSD sysexits(3) + * + * The input data was incorrect in some way. This + * should only be used for user's data and not system + * files. + */ + +#if !defined EX_OSFILE +# define EX_OSFILE 72 +#endif |