8 lines
69 B
C

extern int bar(void);
extern int i;
void foo(void)
{
i = bar();
}