Home | History | Annotate | Download | only in make-3.81

Lines Matching defs:new

45   struct strcache *new;
46 new = (struct strcache *) xmalloc (sizeof (*new) + bufsize);
47 new->end = new->buffer;
48 new->count = 0;
49 new->bytesfree = bufsize;
51 new->next = strcache;
52 strcache = new;
54 return new;
77 /* If nothing is big enough, make a new cache. */