X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/2d466ffd08675d26db45e524c2fe6a8cf4628e2b..7d2c1789c5a8ccf8a767fb11082bff34c1b7c5aa:/sshzlib.c 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,