X-Git-Url: https://secure.softndesign.org/git/?a=blobdiff_plain;f=debug.h;h=62fc38d71e5c713b10324456ed7493adc7c87226;hb=92fc2c44fc12524b636ed9778b26c91f6bedad59;hp=01cc89076f827b095eb5d6e8707f5e0f55461a01;hpb=c9987f3b01b7d9c14c358b862d7a8d174476e569;p=compress.git diff --git a/debug.h b/debug.h index 01cc890..62fc38d 100644 --- a/debug.h +++ b/debug.h @@ -7,7 +7,6 @@ #define DECOMPRESS 2 #define NB_CHARS 256 -#define BUFFER_SIZE 4096 #define DEBUG 4 #define INFO 3 @@ -20,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 */ @@ -28,4 +26,4 @@ extern int verbose; #endif /* __DEBUG_H__ */ -// vim: ts=4 sw=4 et +/* vim: set ts=4 sw=4 et */