mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-16 02:37:42 +01: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;
|
|
}
|