blob: 867874962833175a90ede844dcf2ec8e3f201c89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// a central place to turn on debugging messages
#ifndef DEBUGCHILL_H
#define DEBUGCHILL_H
#ifdef DEBUGCHILL
#define DEBUG_PRINT(args...) fprintf(stderr, args )
#else
#define DEBUG_PRINT(args...) do {} while(0) /* Don't do anything */
#endif
#endif
|