remove stdout/stderr calls
[compress.git] / debug.h
diff --git a/debug.h b/debug.h
index b05fd061db96aabd995d005f83fcc14f0d9fb38a..62fc38d71e5c713b10324456ed7493adc7c87226 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -1,9 +1,6 @@
 #ifndef __DEBUG_H__
 #define __DEBUG_H__
 
-#include <stdio.h>
-#include "fprintf.h"
-
 /* constants */
 
 #define COMPRESS 1
@@ -22,7 +19,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 */