Replaced enum in cc65.h by defines. added comment that cc65 exit constants should not redefine 0 and 1 as they are reserved for exit_success and exit_failure

This commit is contained in:
mc78
2019-11-15 16:35:58 +01:00
committed by Oliver Schmidt
parent 694dd9240f
commit 16a66f19e1
3 changed files with 10 additions and 10 deletions

View File

@@ -14,7 +14,6 @@
#include <ctype.h>
#include <6502.h>
#include <dbg.h>
#include <cc65.h>
/*****************************************************************************/
@@ -1583,7 +1582,7 @@ void DbgEntry (void)
/* Exit intentionally with error because one may
say that DbgEntry is always abnormal. */
exit (CC65_EXIT_FAILURE);
exit (EXIT_FAILURE);
}
}