CMake/Tests/LinkLine/Two.c

11 lines
98 B
C

void OneFunc();
void TwoFunc()
{
static int i = 0;
++i;
if (i == 1) {
OneFunc();
}
}