usr.bin/m4/eval.c
410
temp = xalloc(strlen(argv[2]) + 1, NULL);
usr.bin/m4/extern.h
107
extern void *xalloc(size_t, const char *fmt, ...) __printf0like(2, 3);
usr.bin/m4/gnum4.c
251
errbuf = xalloc(errlen,
usr.bin/m4/gnum4.c
469
pmatch = xalloc(sizeof(regmatch_t) * (re.re_nsub + 1), NULL);
usr.bin/m4/gnum4.c
501
pmatch = xalloc(sizeof(regmatch_t) * (re.re_nsub + 1), NULL);
usr.bin/m4/look.c
162
n->d = xalloc(sizeof(struct macro_definition), NULL);
usr.bin/m4/look.c
175
d = xalloc(sizeof(struct macro_definition), NULL);
usr.bin/m4/look.c
233
name2 = xalloc(strlen(name) + 3 + 1, NULL);
usr.bin/m4/look.c
241
n->d = xalloc(sizeof(struct macro_definition), NULL);
usr.bin/m4/look.c
70
void *storage = xalloc(s, "hash alloc");
usr.bin/m4/look.c
85
return xalloc(s, "element alloc");
usr.bin/m4/main.c
174
mstack = (stae *)xalloc(sizeof(stae) * STACKMAX, NULL);
usr.bin/m4/main.c
175
sstack = (char *)xalloc(STACKMAX, NULL);
usr.bin/m4/misc.c
165
strspace = xalloc(strsize + 1, NULL);
usr.bin/m4/misc.c
168
buf = (unsigned char *)xalloc(bufsize, NULL);