X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=misc.h;h=12d0003fc000acac5e131f82f9dd6f99f0ceb3f1;hb=4abd468e14d110f2085f7a693687a9c19e1d47e1;hp=d9b381196c3a682ee147feb4899db94ec8b313c1;hpb=c87fa98d09343621fc4ae7c3c8fb197d0feeaa67;p=PuTTY.git 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;