config.h.in
changeset 5 e617c9cf6dd3
child 6 90073cbb535d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/config.h.in	Mon Feb 16 01:32:12 2009 +0200
@@ -0,0 +1,16 @@
+
+#ifndef LLM_CONFIG_H
+#define LLM_CONFIG_H
+
+// define this to enable debugging output
+#cmakedefine DEBUG
+
+#ifdef DEBUG
+#include <stdio.h>
+#define D(FORMAT...) { fprintf ( stderr, FORMAT ); }
+#else
+#define D(FORMAT...) { /* FORMAT */ }
+#endif
+
+#endif
+