blob: 8fa89de64b6151187c2cdeb57c7ed54ae3d7c61e [file] [log] [blame]
int foo (void);
int weak (void);
int foo (void)
{
return 10;
}
int weak (void)
{
return 30;
}