main(): Re-introduce return value. Compiler rejects 'void'.

This commit is contained in:
Sven Michael Klose 2021-12-25 20:15:09 +01:00 committed by mrdudz
parent d23c83dd1e
commit a60ac67783
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ unsigned char y = 0;
unsigned char x = 0;
unsigned short n;
void main(void)
int main(void)
{
clrscr();
gotoxy(0,0);cputs("Gamate C-Test");