7 lines
69 B
C
7 lines
69 B
C
extern int bar(void);
|
|
extern int i;
|
|
|
|
void foo(void)
|
|
{
|
|
i = bar();
|
|
}
|