1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-06-20 19:55:10 +08:00
2002-05-01 14:00:21 -04:00

13 lines
166 B
C

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