increase test coverage
[compress.git] / debug.h
diff --git a/debug.h b/debug.h
index 01963d2a33e5ec8c9d54779f64bffe47762fcaa2..3b8a56e3f160258ccecc491c537be1f87ded774a 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -1,16 +1,8 @@
 #ifndef __DEBUG_H__
 #define __DEBUG_H__
 
-#include <stdio.h>
-
 /* constants */
 
-#define COMPRESS 1
-#define DECOMPRESS 2
-
-#define NB_CHARS 256
-#define BUFFER_SIZE 4096
-
 #define DEBUG 4
 #define INFO 3
 #define WARNING 2
@@ -22,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 */
 
@@ -30,4 +21,4 @@ extern int verbose;
 
 #endif /* __DEBUG_H__ */
 
-// vim: ts=4 sw=4 et
+/* vim: set ts=4 sw=4 et */