increase test coverage
[compress.git] / debug.h
diff --git a/debug.h b/debug.h
index 01cc89076f827b095eb5d6e8707f5e0f55461a01..3b8a56e3f160258ccecc491c537be1f87ded774a 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -3,12 +3,6 @@
 
 /* constants */
 
-#define COMPRESS 1
-#define DECOMPRESS 2
-
-#define NB_CHARS 256
-#define BUFFER_SIZE 4096
-
 #define DEBUG 4
 #define INFO 3
 #define WARNING 2
@@ -20,7 +14,6 @@
 #define MIN(x, y) (((x) < (y)) ? (x) : (y))
 #define MAX(x, y) (((x) > (y)) ? (x) : (y))
 #define VERBOSE(level, statement...) do { if (level <= verbose) { statement; } } while(0)
-#define PRINTF(args...) do { fprintf (stdout, args); fflush (stdout); } while (0)
 
 /* gobal variables */
 
@@ -28,4 +21,4 @@ extern int verbose;
 
 #endif /* __DEBUG_H__ */
 
-// vim: ts=4 sw=4 et
+/* vim: set ts=4 sw=4 et */