glibc/elf/reldepmod2.c

9 lines
96 B
C

extern int foo (void);
extern int call_me (void);
int
call_me (void)
{
return foo () - 42;
}