mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-02 10:30:00 +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;
|
||
|
}
|