summaryrefslogtreecommitdiff
path: root/utils/verbose.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/verbose.h')
-rw-r--r--utils/verbose.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/utils/verbose.h b/utils/verbose.h
new file mode 100644
index 00000000..73476383
--- /dev/null
+++ b/utils/verbose.h
@@ -0,0 +1,8 @@
+#ifndef _VERBOSE_H_
+#define _VERBOSE_H_
+
+extern bool SILENT;
+
+inline void SetSilent(bool s) { SILENT = s; }
+
+#endif