1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-02 03:52:49 -05:00

Pedantry patch from RDB: sanitise header use, correct one comment

and remove an unused variable.

[originally from svn r1243]
This commit is contained in:
Simon Tatham
2001-09-07 22:49:17 +00:00
parent eebec27c99
commit 3c74c01014
5 changed files with 9 additions and 12 deletions

View File

@ -40,13 +40,13 @@
#include <stdlib.h>
#include <assert.h>
/* FIXME */
#include <windows.h>
#include <stdio.h>
#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,