glibc/elf/neededobj2.c

9 lines
106 B
C

extern void b_function (void);
extern void c_function (void);
void
b_function (void)
{
c_function();
}