Merge pull request #2314 from acqn/PPFix

[cc65] Separated C preprocessor errors from other errors
This commit is contained in:
Bob Andrews
2023-12-31 19:16:44 +01:00
committed by GitHub
9 changed files with 101 additions and 32 deletions

View File

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