CMake/Tests/LinkLine/One.c

11 lines
97 B
C

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