one.c 77 B

1234567
  1. extern void two(void);
  2. extern void three(void);
  3. void one(void)
  4. {
  5. two();
  6. }