summaryrefslogtreecommitdiff
path: root/chill/include/chilldebug.h
diff options
context:
space:
mode:
Diffstat (limited to 'chill/include/chilldebug.h')
-rw-r--r--chill/include/chilldebug.h15
1 files changed, 0 insertions, 15 deletions
diff --git a/chill/include/chilldebug.h b/chill/include/chilldebug.h
deleted file mode 100644
index 865f1f6..0000000
--- a/chill/include/chilldebug.h
+++ /dev/null
@@ -1,15 +0,0 @@
-
-// 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