https://github.com/Kitware/CMake
Raw File
Tip revision: 612409e5b01a7e4823bb379ee9e002177793eb75 authored by Brad King on 13 November 2009, 14:07:10 UTC
CMake 2.8.0
Tip revision: 612409e
TwoSrc.c
#include <two-test.h>

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