iface_other_src.cpp 253 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 iface_other()
  9. {
  10. return 0;
  11. }