summaryrefslogtreecommitdiff
path: root/chill/include/chilldebug.h
diff options
context:
space:
mode:
authorTuowen Zhao <ztuowen@gmail.com>2016-09-19 21:14:58 +0000
committerTuowen Zhao <ztuowen@gmail.com>2016-09-19 21:14:58 +0000
commit210f77d2c32f14d2e99577fd3c9842bb19d47e50 (patch)
tree5edb327c919b8309e301c3440fb6668a0075c8ef /chill/include/chilldebug.h
parenta66ce5cd670c4d3c0dc449720f5bc45dd4c281b8 (diff)
downloadchill-210f77d2c32f14d2e99577fd3c9842bb19d47e50.tar.gz
chill-210f77d2c32f14d2e99577fd3c9842bb19d47e50.tar.bz2
chill-210f77d2c32f14d2e99577fd3c9842bb19d47e50.zip
Moved most modules into lib
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