main_other.cpp 528 B

1234567891011121314151617181920
  1. #ifndef CFG_OTHER
  2. # error "This source should only be compiled in a non-Debug configuration."
  3. #endif
  4. #ifdef CFG_DEBUG
  5. # error "This source should not be compiled in a Debug configuration."
  6. #endif
  7. #include "iface.h"
  8. extern int custom1_other();
  9. extern int custom2_other();
  10. extern int custom3_other();
  11. extern int custom4_other();
  12. extern int custom5_other();
  13. int main(int argc, char** argv)
  14. {
  15. return iface_src() + iface_other() + custom1_other() + custom2_other() +
  16. custom3_other() + custom4_other() + custom5_other();
  17. }