mainAB.c 226 B

1234567891011121314151617
  1. #include "b.h"
  2. extern IMPORT_B int b1(void);
  3. extern IMPORT_B int b2(void);
  4. #ifndef NO_A
  5. extern int a1(void);
  6. extern int a2(void);
  7. #endif
  8. int main(void)
  9. {
  10. return 0
  11. #ifndef NO_A
  12. + a1() + a2()
  13. #endif
  14. + b1() + b2();
  15. }