iface_debug_src.cpp 253 B

12345678910111213
  1. #ifndef CFG_DEBUG
  2. # error "This source should only be compiled in a Debug configuration."
  3. #endif
  4. #ifdef CFG_OTHER
  5. # error "This source should not be compiled in a non-Debug configuration."
  6. #endif
  7. #include "iface.h"
  8. int iface_debug()
  9. {
  10. return 0;
  11. }