Destaticize some variables to allow checking on them when exiting.

This commit is contained in:
Greg Lehey 1999-03-31 08:43:12 +00:00
parent dbb49f899b
commit 96c60597a8

View File

@ -114,13 +114,13 @@ expand_table(void **table, int oldsize, int newsize)
#define MALLOCENTRIES 16384
int malloccount = 0;
int highwater = 0; /* highest index ever allocated */
static struct mc malloced[MALLOCENTRIES];
struct mc malloced[MALLOCENTRIES];
#define FREECOUNT 64
int lastfree = 0;
struct mc freeinfo[FREECOUNT];
static int total_malloced;
int total_malloced;
static int mallocseq = 0;
caddr_t