Files
seta75D 2e8a93c394 Init
2021-10-11 18:20:23 -03:00

16 lines
236 B
C

#include <stdio.h>
int *
intalloc(n)
register unsigned n;
{
register int *p;
if (p = (int *) calloc((unsigned) 1, n))
return (p);
(void) fprintf(stderr, "out of memory");
fatal("out of memory");
/* NOTREACHED */
}