X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/76e734e5edfea9cc1510630ca3c85af1143f8aed..efcff8cd5ce895df6b6a60dbfa03ba4d3f3affe3:/src/system.h diff --git a/src/system.h b/src/system.h index a0b46eee..bfd24463 100644 --- a/src/system.h +++ b/src/system.h @@ -40,6 +40,18 @@ # include #endif +/* The following test is to work around the gross typo in + systems like Sony NEWS-OS Release 4.0C, whereby EXIT_FAILURE + is defined to 0, not 1. */ +#if !EXIT_FAILURE +# undef EXIT_FAILURE +# define EXIT_FAILURE 1 +#endif + +#ifndef EXIT_SUCCESS +# define EXIT_SUCCESS 0 +#endif + #if HAVE_UNISTD_H # include #endif