2016-10-10 16:55:00 +02:00

9 lines
113 B
C

extern int __attribute__ ((weak)) fun (void);
int
bar (void)
{
if (&fun != 0)
return fun ();
return 0;
}