Retro68/binutils/ld/testsuite/ld-elfweak/main1.c

12 lines
118 B
C
Raw Normal View History

2012-03-26 19:18:29 +00:00
#pragma weak deallocate_foo
int deallocate_foo = 1;
extern void foobar ();
int
main ()
{
foobar ();
return 0;
}