summaryrefslogtreecommitdiff
path: root/src/cli_val.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli_val.h')
-rw-r--r--src/cli_val.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/cli_val.h b/src/cli_val.h
index fec8054..7383263 100644
--- a/src/cli_val.h
+++ b/src/cli_val.h
@@ -215,4 +215,12 @@ extern FILE *out_stream;
extern int initialize_output();
+/*** debug ***/
+#undef CLI_DEBUG
+#ifdef CLI_DEBUG
+#define DPRINT(...) printf(__VA_ARGS__)
+#else
+#define DPRINT(...)
+#endif
+
#endif