ref: 0aee0027b0ae4f745250ca8ca90e7d5c6017151d
dir: /src/libscc/newitem.c/
#include <scc/scc.h> void newitem(struct items *items, char *item) { if ((items->n + 1) < items->n) die("overflow in newitem (%u + 1)", items->n); items->s = xrealloc(items->s, (items->n + 1) * sizeof(char **)); items->s[items->n++] = item; }