glibc/elf/reldep6mod4.c

13 lines
100 B
C

int foo (void);
int weak (void);
int foo (void)
{
return 10;
}
int weak (void)
{
return 30;
}