1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-11 11:30:13 +00:00

remove warning about missing return value; fix typo

This commit is contained in:
Christian Groessler 2013-08-26 12:16:26 +02:00
parent 13a7812cf5
commit 887ba4d501

View File

@ -40,6 +40,7 @@ int main(void)
printf("is'a a XL/XE, %s, Rev. %d\n",palntsc ? "PAL" : "NTSC",minor);
break;
}
printf("hit <RETURN> to continure...\n");
printf("hit <RETURN> to continue...\n");
c = getchar();
return 0;
}