blob: 4abbb82739af19446e7b7e5af584636980f7d4c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// a central place to turn on debugging messages
// enable the next line to get lots of output
//#define DEBUGCHILL
#ifdef DEBUGCHILL
#define DEBUG_PRINT(args...) fprintf(stderr, args )
#else
#define DEBUG_PRINT(args...) /* Don't do anything */
#endif
|