alloc.h 252 B

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