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
One.c
void TwoFunc();

void OneFunc()
{
  static int i = 0;
  ++i;
  if( i==1 ) {
    TwoFunc();
  }
}
back to top