Removed warning on implicit "return 0" in C99 standard main function in default cc65 mode.

This commit is contained in:
acqn
2022-10-22 12:45:51 +08:00
parent d7d1d89698
commit 03ceeb4ad1
4 changed files with 31 additions and 35 deletions

View File

@@ -20,5 +20,4 @@ int main(int argc, char* argv[])
{
printf("%02x", 0x42);
/* produce a warning */
return 0;
}