ack/util/int/alloc.h
1988-06-22 16:57:09 +00:00

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)