CMake/Tests/Dependency/Four/FourSrc.c

16 lines
273 B
C
Raw Normal View History

#include <two-test.h> /* Requires TwoCustom to be built first. */
2002-05-01 22:00:21 +04:00
void NoDepAFunction();
void OneFunction();
void TwoFunction();
void FourFunction()
{
static int count = 0;
if( count == 0 ) {
++count;
TwoFunction();
}
OneFunction();
NoDepAFunction();
}