9 lines
91 B
C
9 lines
91 B
C
extern int bar (void);
|
|
extern int foo (void);
|
|
|
|
int
|
|
x (void)
|
|
{
|
|
foo ();
|
|
return bar ();
|
|
}
|