mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-27 14:50:23 +00:00
9 lines
124 B
C
9 lines
124 B
C
int common1[8];
|
|
void
|
|
foo ()
|
|
{
|
|
int i;
|
|
for (i = 0; i < sizeof (common1)/ sizeof (common1[0]); i++)
|
|
common1[i] = -1;
|
|
}
|