blob: 2e4ff8f22805794565732a41ef809292b4282dce [file] [log] [blame]
extern void bar(void) __attribute__ (( weak ));
extern void t4(void);
void foo(void);
void foo(void)
{
bar();
t4();
}