Home | History | Annotate | Download | only in elf2aout

Lines Matching defs:newstrings

463 	char   *newstrings, *nsp;
481 newstrings = malloc(newstringsize);
482 if (newstrings == NULL)
485 nsp = newstrings;
514 off = (size_t)(nsp - newstrings);
524 nns = realloc(newstrings, newstringsize);
527 newstrings = nns;
528 nsp = newstrings + off;
534 outbuf[i].n_un.n_strx = nsp - newstrings + 4;
570 if (write(out, newstrings
571 err(EXIT_FAILURE, "%s: newstrings: write failed", __func__);
572 free(newstrings);