1988-06-22 16:57:09 +00:00
|
|
|
/*
|
|
|
|
Rather than using malloc and realloc, which require testing
|
|
|
|
afterwards, we use a version that will either succeed or call
|
|
|
|
fatal().
|
|
|
|
*/
|
|
|
|
|
1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
1988-06-22 16:57:09 +00:00
|
|
|
|
|
|
|
extern char *Realloc(), *Malloc();
|
|
|
|
|
|
|
|
/* reallocation factor */
|
|
|
|
|
|
|
|
#define allocfrac(s) ((s) * 3 / 2)
|
|
|
|
|