summaryrefslogtreecommitdiff
path: root/chill/include/chilldebug.h
blob: 865f1f6518cd8891ca1a99e4b186c0f3b7573ccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

// a central place to turn on debugging messages

// enable the next line to get lots of output 
//#define DEBUGCHILL
#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