X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/5471d09ad63fc6216fb9c2a3b52ca9c93821a054..0622ea7168aa265db70be885fbffb050f29f0205:/misc.h diff --git a/misc.h b/misc.h index d9b38119..12d0003f 100644 --- a/misc.h +++ b/misc.h @@ -3,6 +3,16 @@ #include "puttymem.h" +#ifndef FALSE +#define FALSE 0 +#endif +#ifndef TRUE +#define TRUE 1 +#endif + +char *dupstr(char *s); +char *dupcat(char *s1, ...); + struct bufchain_granule; typedef struct bufchain_tag { struct bufchain_granule *head, *tail;