ack/util/int/alloc.h

15 lines
256 B
C
Raw Normal View History

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().
*/
/* $Header$ */
extern char *Realloc(), *Malloc();
/* reallocation factor */
#define allocfrac(s) ((s) * 3 / 2)