blob: 5fc212e0ff5b567a474a7edd53a4bb98f0f07b54 [file]
void OneFunc();
void TwoFunc()
{
static int i = 0;
++i;
if (i == 1) {
OneFunc();
}
}