1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-03 11:29:42 +00:00
This commit is contained in:
Bob Andrews 2024-02-02 13:13:57 +01:00 committed by GitHub
parent 96d55e3703
commit 54b423a99e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -40,12 +40,5 @@ int main(void) {
} }
printf("%d errors\n", fails); printf("%d errors\n", fails);
#ifdef __OPT__
return fails; return fails;
#else
/* Force exit failure on non-optimised version, which works,
* otherwise it breaks the build
*/
return 1;
#endif
} }