blob: 0d3c6ba8ac531d558e2affdf9d83a056baf731ae [file] [log] [blame]
extern int foo __attribute ((weak));
int
_start (void)
{
if (&foo)
return foo;
return 0;
}