mirror of
https://github.com/nArnoSNES/tcc-65816.git
synced 2024-10-31 11:04:55 +00:00
7 lines
209 B
C
7 lines
209 B
C
/* using unknown pointer type as the first argument in function implementations caused segfault
|
|
because it was mistaken for a K&R-style function declaration */
|
|
int main(unknown *x, void *x)
|
|
{
|
|
return 0;
|
|
}
|