glibc/elf/constload3.c

9 lines
89 B
C

extern int baz (void);
extern int bar (void);
int
bar (void)
{
return -21 + baz ();
}