15 lines
256 B
C
15 lines
256 B
C
/*
|
|
Rather than using malloc and realloc, which require testing
|
|
afterwards, we use a version that will either succeed or call
|
|
fatal().
|
|
*/
|
|
|
|
/* $Header$ */
|
|
|
|
extern char *Realloc(), *Malloc();
|
|
|
|
/* reallocation factor */
|
|
|
|
#define allocfrac(s) ((s) * 3 / 2)
|
|
|