mirror of
https://github.com/Kitware/CMake.git
synced 2025-06-20 19:55:10 +08:00
13 lines
166 B
C
13 lines
166 B
C
void OneFunction();
|
|
void FourFunction();
|
|
|
|
void ThreeFunction()
|
|
{
|
|
static int count = 0;
|
|
if( count == 0 ) {
|
|
++count;
|
|
FourFunction();
|
|
}
|
|
OneFunction();
|
|
}
|