1#pragma weak deallocate_foo
2int deallocate_foo = 1;
3
4extern void foobar ();
5
6int
7main ()
8{
9  foobar ();
10  return 0;
11}
12