9 lines
98 B
C
9 lines
98 B
C
extern void bar () __attribute__((weak));
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
if (bar)
|
|
bar ();
|
|
return 0;
|
|
}
|