glibc/elf/dblloadmod2.c

14 lines
101 B
C

extern int bar (void);
int
baz (void)
{
return -42;
}
int
xyzzy (void)
{
return 10 + bar ();
}