1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

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

This commit is contained in:
Sven Michael Klose 2021-12-25 20:15:09 +01:00
parent 0707cdbe2c
commit 3bd72b9659

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