Merge topic 'vs-instance'
[kiteware-cmake.git] / Tests / Dependency / Three / ThreeSrc.c
blob85c51fc9d00a30bf88c5e62681e146423a4bcf85
1 void OneFunction(void);
2 void FourFunction(void);
4 void ThreeFunction(void)
6 static int count = 0;
7 if (count == 0) {
8 ++count;
9 FourFunction();
11 OneFunction();