1 int f(void) __attribute__((weak));
main(void)2 int main(void){return f?f():0;}
3