PageRenderTime 16ms CodeModel.GetById 7ms app.highlight 7ms RepoModel.GetById 1ms 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
 3// General includes.
 4#include "base/cl_sysdep.h"
 5
 6// Specification.
 7
 8
 9// Implementation.
10
11namespace cln {
12
13// This dummy links in this module when <cln/real.h> requires it.
14int cl_R_debug_module;
15
16extern int cl_SF_debug_module;
17extern int cl_FF_debug_module;
18extern int cl_DF_debug_module;
19extern int cl_LF_debug_module;
20extern int cl_RA_debug_module;
21static void* dummy[] = { &dummy,
22	&cl_SF_debug_module,
23	&cl_FF_debug_module,
24	&cl_DF_debug_module,
25	&cl_LF_debug_module,
26	&cl_RA_debug_module
27};
28
29}  // namespace cln