7 lines
87 B
C
7 lines
87 B
C
extern int foo(void);
|
|
extern int bar(void);
|
|
int main(void)
|
|
{
|
|
return foo() + bar();
|
|
}
|