Fixed cc65 exitcode when there are only preprocessor errors.

This commit is contained in:
acqn
2023-12-19 19:30:50 +08:00
parent cd7c688dff
commit b876a6b213
2 changed files with 10 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
/* Bug #2312 */
#error "Compiler should exit with failure"
int main(void)
{
return 0;
}