Updated formatting of documentation plus a little reorganization.
[cmake.git] / Tests / Dependency / Four / FourSrc.c
blobe8fefcda26165230b66a41ef8088c1a7efe93a3e
1 void NoDepAFunction();
2 void OneFunction();
3 void TwoFunction();
5 void FourFunction()
7 static int count = 0;
8 if( count == 0 ) {
9 ++count;
10 TwoFunction();
12 OneFunction();
13 NoDepAFunction();