https://github.com/Kitware/CMake
Raw File
Tip revision: 707b3e0809e95aa19e154c36a82208ec58aa2952 authored by Bill Hoffman on 21 January 2008, 17:56:51 UTC
ENH: final 2.4.8
Tip revision: 707b3e0
TwoSrc.c
void ThreeFunction();

void TwoFunction()
{
  static int count = 0;
  if( count == 0 ) {
    ++count;
    ThreeFunction();
  }
}
back to top