mirror of
https://github.com/cc65/cc65.git
synced 2024-12-27 15:29:46 +00:00
Remove command line arguments and return value from main().
This commit is contained in:
parent
d5591bc184
commit
d23c83dd1e
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user