2016-07-09 11:21:54 +02:00

7 lines
99 B
C

extern int mylibA(void);
extern int mylibB(void);
int main(void)
{
return mylibA() + mylibB();
}