16 lines
288 B
C
Raw Normal View History

2010-11-13 01:00:53 +02:00
#include <two-test.h> /* Requires TwoCustom to be built first. */
2024-04-14 22:45:38 +02:00
void NoDepAFunction(void);
void OneFunction(void);
void TwoFunction(void);
2024-04-14 22:45:38 +02:00
void FourFunction(void)
{
static int count = 0;
2016-07-09 11:21:54 +02:00
if (count == 0) {
++count;
TwoFunction();
}
OneFunction();
NoDepAFunction();
}