1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-11 05:29:33 +00:00

Remove command line arguments and return value from main().

This commit is contained in:
Sven Michael Klose 2021-12-25 20:12:45 +01:00 committed by mrdudz
parent d5591bc184
commit d23c83dd1e

View File

@ -7,11 +7,8 @@ unsigned char y = 0;
unsigned char x = 0;
unsigned short n;
int main(int argc, char *argv[])
void main(void)
{
(void) argc; // Suppress warnings.
(void) argv;
clrscr();
gotoxy(0,0);cputs("Gamate C-Test");