PageRenderTime 40ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/cln-1.3.2/src/real/misc/cl_R_debug.cc

#
C++ | 29 lines | 16 code | 8 blank | 5 comment | 0 complexity | d2b5973fab20567ddc5b9914c51be44f MD5 | raw file
Possible License(s): GPL-2.0
  1. // cl_R debugging support.
  2. // General includes.
  3. #include "base/cl_sysdep.h"
  4. // Specification.
  5. // Implementation.
  6. namespace cln {
  7. // This dummy links in this module when <cln/real.h> requires it.
  8. int cl_R_debug_module;
  9. extern int cl_SF_debug_module;
  10. extern int cl_FF_debug_module;
  11. extern int cl_DF_debug_module;
  12. extern int cl_LF_debug_module;
  13. extern int cl_RA_debug_module;
  14. static void* dummy[] = { &dummy,
  15. &cl_SF_debug_module,
  16. &cl_FF_debug_module,
  17. &cl_DF_debug_module,
  18. &cl_LF_debug_module,
  19. &cl_RA_debug_module
  20. };
  21. } // namespace cln