7 lines
99 B
C
7 lines
99 B
C
extern int mylibA(void);
|
|
extern int mylibB(void);
|
|
int main(void)
|
|
{
|
|
return mylibA() + mylibB();
|
|
}
|