https://github.com/Kitware/CMake
Raw File
Tip revision: 5971063a5c41a1c899de3700ffce38c8655abe34 authored by David Cole on 04 October 2011, 15:48:52 UTC
CMake 2.8.6
Tip revision: 5971063
TwoSrc.c
#include <two-test.h>

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