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
1 changed files with 1 additions and 4 deletions

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