mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 06:31:31 +00:00
7 lines
118 B
C
7 lines
118 B
C
|
char a[][] = { 0, 0 }; /* Error: Array type has incomplete element type 'char[]' */
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
return 0;
|
||
|
}
|