From faa3108611e2b31e614d10531548803e2362a4f0 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sat, 3 Nov 2018 06:54:02 +0100 Subject: opentrack: pull in EXIT_{SUCCESS, FAILURE} --- compat/sysexits.hpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 compat/sysexits.hpp (limited to 'compat') 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 // 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 -- cgit v1.2.3