code comparison optimization
[compress.git] / debug.h
diff --git a/debug.h b/debug.h
index b05fd061db96aabd995d005f83fcc14f0d9fb38a..3b8a56e3f160258ccecc491c537be1f87ded774a 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -1,16 +1,8 @@
 #ifndef __DEBUG_H__
 #define __DEBUG_H__
 
-#include <stdio.h>
-#include "fprintf.h"
-
 /* constants */
 
-#define COMPRESS 1
-#define DECOMPRESS 2
-
-#define NB_CHARS 256
-
 #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 { myfprintf (stdout, args); fflush (stdout); } while (0)
 
 /* gobal variables */