X-Git-Url: https://secure.softndesign.org/git/?a=blobdiff_plain;f=debug.h;h=62fc38d71e5c713b10324456ed7493adc7c87226;hb=92fc2c44fc12524b636ed9778b26c91f6bedad59;hp=64ec161eb9d09bb1b5a664ab5982783106a556b4;hpb=5f83300ce6a5da27e68085bddce47b736cfdea79;p=compress.git diff --git a/debug.h b/debug.h index 64ec161..62fc38d 100644 --- a/debug.h +++ b/debug.h @@ -1,16 +1,12 @@ #ifndef __DEBUG_H__ #define __DEBUG_H__ -#include -#include "fprintf.h" - /* constants */ #define COMPRESS 1 #define DECOMPRESS 2 #define NB_CHARS 256 -#define BUFFER_SIZE 4096 #define DEBUG 4 #define INFO 3 @@ -23,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 { _fprintf (stdout, args); fflush (stdout); } while (0) /* gobal variables */