2010-11-13 01:00:53 +02:00
|
|
|
#include <two-test.h> /* Requires TwoCustom to be built first. */
|
2008-10-12 18:41:06 +02:00
|
|
|
void NoDepAFunction();
|
|
|
|
void OneFunction();
|
|
|
|
void TwoFunction();
|
|
|
|
|
|
|
|
void FourFunction()
|
|
|
|
{
|
|
|
|
static int count = 0;
|
2016-07-09 11:21:54 +02:00
|
|
|
if (count == 0) {
|
2008-10-12 18:41:06 +02:00
|
|
|
++count;
|
|
|
|
TwoFunction();
|
|
|
|
}
|
|
|
|
OneFunction();
|
|
|
|
NoDepAFunction();
|
|
|
|
}
|