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);
|
2008-10-12 18:41:06 +02:00
|
|
|
|
2024-04-14 22:45:38 +02:00
|
|
|
void FourFunction(void)
|
2008-10-12 18:41:06 +02:00
|
|
|
{
|
|
|
|
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();
|
|
|
|
}
|