CMake/Tests/Dependency/Three/ThreeSrc.c

13 lines
166 B
C

void OneFunction();
void FourFunction();
void ThreeFunction()
{
static int count = 0;
if( count == 0 ) {
++count;
FourFunction();
}
OneFunction();
}