aboutsummaryrefslogtreecommitdiff
path: root/ld/testsuite/ld-vsb/common.c
blob: 0432a07915f0744c1254f4848d4201ab97f265df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int foo;
__asm__ (".hidden foo");

int
_start (void)
{
  return foo;
}

int
__start (void)
{
  return _start ();
}