1int foo(void) __attribute__((weak));
2
3int foo(void) {
4    return 0;
5}
6