summaryrefslogtreecommitdiff
path: root/Tests/Dependency/Three/ThreeSrc.c
blob: 9c77f17a0e572b8078762804969d9c0a7c83e49e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
void OneFunction();
void FourFunction();

void ThreeFunction()
{
  static int count = 0;
  if( count == 0 ) {
    ++count;
    FourFunction();
  }
  OneFunction();
}