FourSrc.c 272 B

123456789101112131415
  1. #include <two-test.h> /* Requires TwoCustom to be built first. */
  2. void NoDepAFunction();
  3. void OneFunction();
  4. void TwoFunction();
  5. void FourFunction()
  6. {
  7. static int count = 0;
  8. if (count == 0) {
  9. ++count;
  10. TwoFunction();
  11. }
  12. OneFunction();
  13. NoDepAFunction();
  14. }