1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-07-01 03:22:48 -05:00

Dave Hinton's debugging patch.

[originally from svn r1079]
This commit is contained in:
Simon Tatham
2001-04-28 09:24:19 +00:00
parent b7844a20af
commit ea2e1dd9ae
4 changed files with 95 additions and 13 deletions

View File

@ -425,7 +425,7 @@ void random_get_savedata(void **data, int *len);
* Exports from misc.c.
*/
#include "puttymem.h"
#include "misc.h"
/*
* Exports from version.c.
@ -459,11 +459,5 @@ void crypto_wrapup();
void agent_query(void *in, int inlen, void **out, int *outlen);
int agent_exists(void);
#ifdef DEBUG
void dprintf(char *fmt, ...);
#define debug(x) (dprintf x)
#else
#define debug(x)
#endif
#endif