diff -r 5770be2d5f3f -r e617c9cf6dd3 config.h.in --- /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 +#define D(FORMAT...) { fprintf ( stderr, FORMAT ); } +#else +#define D(FORMAT...) { /* FORMAT */ } +#endif + +#endif +