blob: 3e814f3ea8e12f4a34efbc26d27de5fe643f81ad [file] [log] [blame]
void OneFunction();
void FourFunction();
void ThreeFunction()
{
static int count = 0;
if (count == 0) {
++count;
FourFunction();
}
OneFunction();
}