X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=sshzlib.c;h=dc23f5ccb36f5f47c691e090c9550c04fca0eb9d;hb=4abd468e14d110f2085f7a693687a9c19e1d47e1;hp=cf471dbd88bb858cfc8ba0654790880d9e4a96e7;hpb=fb473cc16c4e55af8b34cd01b1d03be8b98d752e;p=PuTTY.git diff --git a/sshzlib.c b/sshzlib.c index cf471dbd..dc23f5cc 100644 --- a/sshzlib.c +++ b/sshzlib.c @@ -40,13 +40,13 @@ #include #include -/* FIXME */ -#include -#include -#include "putty.h" - #include "ssh.h" +#ifndef FALSE +#define FALSE 0 +#define TRUE (!FALSE) +#endif + /* ---------------------------------------------------------------------- * Basic LZ77 code. This bit is designed modularly, so it could be * ripped out and used in a different LZ77 compressor. Go to it,