* src/system.h (EXIT_SUCCESS, EXIT_FAILURE): Ensure a proper

definition.
* src/main.c (main): Use them.
Suggested by Hans Aberg.
This commit is contained in:
Akim Demaille
2001-11-14 14:15:22 +00:00
parent fa63c49821
commit 0f37a9942f
3 changed files with 22 additions and 3 deletions

View File

@@ -119,7 +119,7 @@ main (int argc, char *argv[])
output_files ();
exit (complain_message_count ? 1 : 0);
return complain_message_count ? EXIT_FAILURE : EXIT_SUCCESS;
}
/* Abort for an internal error denoted by string S. */