Removed CC65_ prefixes from exit statements in abort and assert code as well from definition

This commit is contained in:
mc78
2019-11-17 13:13:43 +01:00
committed by Oliver Schmidt
parent 16a66f19e1
commit a139c4057c
5 changed files with 6 additions and 6 deletions

View File

@@ -17,5 +17,5 @@ void __fastcall__ _afailed (char* file, unsigned line)
{
raise (SIGABRT);
fprintf (stderr, "ASSERTION FAILED IN %s(%u)\n", file, line);
exit (CC65_EXIT_AFAILED);
exit (EXIT_ASSERT);
}