KWSys Nightly Date Stamp
[cmake.git] / Tests / Dependency / Three / ThreeSrc.c
blob9c77f17a0e572b8078762804969d9c0a7c83e49e
1 void OneFunction();
2 void FourFunction();
4 void ThreeFunction()
6 static int count = 0;
7 if( count == 0 ) {
8 ++count;
9 FourFunction();
11 OneFunction();