9 lines
88 B
C
Raw Normal View History

2018-12-28 16:25:28 +01:00
extern int foo __attribute ((weak));
int
_start (void)
{
if (&foo)
return foo;
}