Two.c 86 B

12345678
  1. void OneFunc();
  2. void NoDepZ_func();
  3. void TwoFunc()
  4. {
  5. OneFunc();
  6. NoDepZ_func();
  7. }