7 lines
56 B
C
7 lines
56 B
C
extern int a(void);
|
|
|
|
int b(void)
|
|
{
|
|
return a() + 17;
|
|
}
|