2024-04-14 22:45:38 +02:00

11 lines
132 B
C

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