2010-01-28 16:48:20 -05:00

4 lines
97 B
C

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