main(): No return value.

This commit is contained in:
Sven Michael Klose 2021-12-25 21:21:01 +01:00
parent 3bd72b9659
commit 05b8af07aa
1 changed files with 1 additions and 3 deletions

View File

@ -7,7 +7,7 @@ unsigned char y = 0;
unsigned char x = 0;
unsigned short n;
int main(void)
void main(void)
{
clrscr();
gotoxy(0,0);cputs("Gamate C-Test");
@ -47,6 +47,4 @@ int main(void)
(*((unsigned char*)LCD_YPOS)) = y;
}
return 0;
}