libA.c 91 B

1234567
  1. extern void libB_func(void);
  2. void libA_func(void);
  3. void libA_func(void)
  4. {
  5. libB_func();
  6. }