# HG changeset patch # User Jim Meyering # Date 916499868 0 # Node ID 0f8f202484fb396f32efee8df12b8bf12f3eb6a5 # Parent cb8655b1684e7a74cb8dce6178c8e51ece730683 (EXIT_FAILURE): Define. (ARGMATCH_DIE): Use it. diff --git a/lib/argmatch.c b/lib/argmatch.c --- a/lib/argmatch.c +++ b/lib/argmatch.c @@ -48,9 +48,17 @@ extern char *program_name; +/* 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 + /* Non failing version of argmatch call this function after failing. */ #ifndef ARGMATCH_DIE -# define ARGMATCH_DIE exit (2) +# define ARGMATCH_DIE exit (EXIT_FAILURE) #endif static void