some leaks plugged (as detected by the leak detector)

This commit is contained in:
dick
1986-07-18 21:10:42 +00:00
parent 7f5bcdf116
commit fa9f4ab0ab
21 changed files with 204 additions and 176 deletions

View File

@@ -10,12 +10,20 @@ struct declarator {
struct declarator *next;
struct idf *dc_idf;
struct decl_unary *dc_decl_unary;
struct idstack_item *dc_fparams; /* params for function */
struct formal *dc_formal; /* params for function */
};
/* ALLOCDEF "declarator" */
#define NO_PARAMS ((struct idstack_item *) 0)
struct formal { /* list of formals */
struct formal *next;
struct idf *fm_idf;
};
/* ALLOCDEF "formal" */
#define NO_PARAMS ((struct formal *) 0)
struct decl_unary {
struct decl_unary *next;