]> git.refcnt.org Git - colorize.git/commitdiff
Allow for DEBUG to be overridden
authorSteven Schubiger <stsc@refcnt.org>
Sat, 18 May 2013 21:41:27 +0000 (23:41 +0200)
committerSteven Schubiger <stsc@refcnt.org>
Sat, 18 May 2013 21:41:27 +0000 (23:41 +0200)
colorize.c

index 8514d4ecad95f52576813102ad54150d147e8b91..652d3a6ecec82c197bf6381c12309fd62845248f 100644 (file)
@@ -34,7 +34,9 @@
 #include <time.h>
 #include <unistd.h>
 
-#define DEBUG 0
+#ifndef DEBUG
+# define DEBUG 0
+#endif
 
 #define str(arg) #arg
 #define to_str(arg) str(arg)