main_other.cpp 293 B

12345678910111213
  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. int main(int argc, char** argv)
  9. {
  10. return iface_src() + iface_other();
  11. }