8 lines
66 B
C
8 lines
66 B
C
|
extern int baz (void);
|
||
|
|
||
|
int
|
||
|
bar (void)
|
||
|
{
|
||
|
return -21 + baz ();
|
||
|
}
|