vers16.c 95 B

12345678910
  1. int show_bar ()
  2. {
  3. return 0;
  4. }
  5. extern int show_foo ();
  6. int main ()
  7. {
  8. return show_foo ();
  9. }