aboutsummaryrefslogtreecommitdiff
path: root/puzzles.h
diff options
context:
space:
mode:
Diffstat (limited to 'puzzles.h')
-rw-r--r--puzzles.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/puzzles.h b/puzzles.h
index 0bdb581..09848d7 100644
--- a/puzzles.h
+++ b/puzzles.h
@@ -122,7 +122,8 @@ struct config_item {
* Platform routines
*/
-#ifdef DEBUG
+/* We can't use #ifdef DEBUG, because Cygwin defines it by default. */
+#ifdef DEBUGGING
#define debug(x) (debug_printf x)
void debug_printf(char *fmt, ...);
#else