mirror of
https://github.com/cc65/cc65.git
synced 2026-04-25 06:17:58 +00:00
Removed CC65_ prefixes from exit statements in abort and assert code as well from definition
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
@@ -16,7 +16,7 @@ void abort (void)
|
||||
{
|
||||
raise (SIGABRT);
|
||||
fputs ("ABNORMAL PROGRAM TERMINATION\n", stderr);
|
||||
exit (CC65_EXIT_ABORT);
|
||||
exit (EXIT_ABORT);
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user