46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
#ifdef FOSSIL_ENABLE_TCL
# include "tcl.h"
#endif
#ifdef FOSSIL_ENABLE_JSON
# include "cson_amalgamation.h" /* JSON API. */
# include "json_detail.h"
#endif
/*
** Maximum number of auxiliary parameters on reports
*/
#define MX_AUX 5
/*
|
>
>
>
|
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#ifdef FOSSIL_ENABLE_TCL
# include "tcl.h"
#endif
#ifdef FOSSIL_ENABLE_JSON
# include "cson_amalgamation.h" /* JSON API. */
# include "json_detail.h"
#endif
#ifdef HAVE_BACKTRACE
# include <execinfo.h>
#endif
/*
** Maximum number of auxiliary parameters on reports
*/
#define MX_AUX 5
/*
|