mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-21 13:48:33 -05:00
13 lines
177 B
C
13 lines
177 B
C
void OneFunction(void);
|
|
void FourFunction(void);
|
|
|
|
void ThreeFunction(void)
|
|
{
|
|
static int count = 0;
|
|
if (count == 0) {
|
|
++count;
|
|
FourFunction();
|
|
}
|
|
OneFunction();
|
|
}
|