weak_as_needed_a.c 124 B

12345678910
  1. extern void bar(void) __attribute__ (( weak ));
  2. extern void t4(void);
  3. void foo(void);
  4. void foo(void)
  5. {
  6. bar();
  7. t4();
  8. }