/* vi: set tabstop=4 shiftwidth=4: */ /* * $Id: alloc.h,v 1.3 1996/12/28 22:11:01 schweikh Exp $ */ extern long alloc_free; /* # of allocs - # of frees */ extern long alloc_max; /* maximum # of allocations */ void *xmalloc (size_t); void *xrealloc (void *, size_t); void xfree (void *);