1int foo;
2asm (".hidden foo");
3
4int
5_start (void)
6{
7  return foo;
8}
9
10int
11__start (void)
12{
13  return _start ();
14}
15