2016-07-09 11:21:54 +02:00

11 lines
128 B
C

#include <two-test.h>
void TwoFunction()
{
static int count = 0;
if (count == 0) {
++count;
ThreeFunction();
}
}