Pristine Ack-5.5
[Ack-5.5.git] / util / int / alloc.h
1 /*
2         Rather than using malloc and realloc, which require testing
3         afterwards, we use a version that will either succeed or call
4         fatal().
5 */
6
7 /* $Id: alloc.h,v 2.2 1994/06/24 10:45:40 ceriel Exp $ */
8
9 extern char *Realloc(), *Malloc();
10
11 /* reallocation factor */
12
13 #define allocfrac(s)    ((s) * 3 / 2)
14