xrealloc
: xrealloc(ptr, grow_nitems_alloc(nitems_alloc, itemsize)));
newresult = xrealloc(result, res_size);
void *xrealloc(void *, size_t);
xrealloc(search_dirs, n_search_dirs * sizeof search_dirs[0]);
void *xrealloc(void *, size_t);
dd->roots = xrealloc(dd->roots, i * sizeof *dd->roots);
dd->parts = xrealloc(dd->parts, i * sizeof *dd->parts);
ptable->parts = xrealloc(ptable->parts,
EXTERN void * xrealloc PROTO((void *, size_t));
offset_table = xrealloc(offset_table,
nstrtabp = xrealloc(nstrtabp, nstrtab_size, fn,
static void *xrealloc(void *, size_t);
cptr = curline = xrealloc(curline, curlen *= 2);
msg = xrealloc(msg, clen);
msg = xrealloc(msg, msglen);
void *xrealloc(void *, size_t *, size_t);
kte = xrealloc(NULL, &siz, sizeof(struct ktr_entry));
kte = xrealloc(kte, &siz, sizeof(struct ktr_entry) + len + 1);
extern void *xrealloc(void *, size_t, const char *, ...) __printflike(3, 4);
buffer = xrealloc(buffer, bufsize, NULL);
buffer = xrealloc(buffer, bufsize, NULL);
name = xrealloc(name, namelen = nl + 1,
defn = xrealloc(defn, defnlen = dl + 1,
sstack = xrealloc(sstack, STACKMAX,
newbuf = xrealloc(buf, bufsize, "too many characters pushed back");
void *xrealloc(void *, size_t);
void *xrealloc(void *, size_t);
buf->data = xrealloc(buf->data, buf->cap);
labels->vals = xrealloc(labels->vals,
dn->dn_items = xrealloc(dn->dn_items,
syms->items = xrealloc(syms->items,
pool->items = xrealloc(pool->items,
mpools.pools = xrealloc(mpools.pools,
s1->data = xrealloc(s1->data, s1->cap);
evaluation_modes.items = xrealloc(
list->items = xrealloc(list->items,
libs = xrealloc(libs, (i + 2) * sizeof(*libs));
buf->buf = xrealloc(buf->buf, buf->cap = len);
strg = xrealloc(strg, slen * 2);
buf = xrealloc(buf, blen = len + 1);
fnames = xrealloc(fnames, nlen * sizeof(*fnames));
flines = xrealloc(flines, nlen * sizeof(*flines));
inpfns = xrealloc(inpfns, (ninpfns * 2) * sizeof(*inpfns));
tlst = xrealloc(tlst, (tlstlen * 2) * sizeof(*tlst));
l->items = xrealloc(l->items, sizeof(*l->items) * l->cap);
char *s = xrealloc(NULL, len1 + len2 + 1);