X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/c6e0eaf00cd09a4e5237e70d8351049ec91d7653..d94be36654214c09fa6510611658325a84d5cfa7:/sym.h diff --git a/sym.h b/sym.h index 7dd9217..d9d270c 100644 --- a/sym.h +++ b/sym.h @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: sym.h,v 1.10 1999/12/10 23:42:04 mdw Exp $ + * $Id: sym.h,v 1.11 2000/06/17 10:37:39 mdw Exp $ * * Symbol table management * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: sym.h,v $ + * Revision 1.11 2000/06/17 10:37:39 mdw + * Add support for arena management. + * * Revision 1.10 1999/12/10 23:42:04 mdw * Change header file guard names. * @@ -82,6 +85,10 @@ # include "hash.h" #endif +#ifndef MLIB_SUB_H +# include "sub.h" +#endif + /*----- Type definitions --------------------------------------------------*/ /* --- Symbol table --- * @@ -93,6 +100,7 @@ typedef struct sym_table { hash_table t; + subarena *s; size_t load; } sym_table;