10 lines
91 B
C
10 lines
91 B
C
extern int common1[8];
|
|
|
|
extern void foo ();
|
|
|
|
int
|
|
bar ()
|
|
{
|
|
foo ();
|
|
return common1[4];
|
|
}
|