glibc/elf/dblloadmod1.c

9 lines
88 B
C

extern int bar (void);
extern int foo (void);
int
foo (void)
{
return 10 + bar ();
}