Exec.c 86 B

123456789
  1. void OneFunc();
  2. void TwoFunc();
  3. int main()
  4. {
  5. OneFunc();
  6. TwoFunc();
  7. return 0;
  8. }