swh:1:snp:3cba5856b0ddc3feab6c3c2d096d614b02c883ec
Raw File
Tip revision: 4a6fe0290880bd56dd5141f06c9fa2b9e310162e authored by Brad King on 13 August 2015, 13:17:06 UTC
CMake 3.3.1
Tip revision: 4a6fe02
Two.c
void OneFunc();

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