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