1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07: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
parent f4702cbc40
commit 0707cdbe2c

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");