2013-02-08 23:10:22 +04:00
|
|
|
|
|
|
|
#include "b.h"
|
|
|
|
|
2012-03-14 17:24:26 +04:00
|
|
|
extern IMPORT_B int b1(void);
|
|
|
|
extern IMPORT_B int b2(void);
|
|
|
|
#ifndef NO_A
|
|
|
|
extern int a1(void);
|
|
|
|
extern int a2(void);
|
|
|
|
#endif
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
return 0
|
|
|
|
#ifndef NO_A
|
2016-05-16 17:34:04 +03:00
|
|
|
+ a1() + a2()
|
2012-03-14 17:24:26 +04:00
|
|
|
#endif
|
2016-05-16 17:34:04 +03:00
|
|
|
+ b1() + b2();
|
2012-03-14 17:24:26 +04:00
|
|
|
}
|