ref: 128525d431e18e0f3f1849c97dfec05d3c35cc7f
dir: /sys/src/libsunrpc/emalloc.c/
#include <u.h>
#include <libc.h>
#include <thread.h>
#include <sunrpc.h>
void*
emalloc(ulong n)
{
void *v;
v = mallocz(n, 1);
if(v == nil)
sysfatal("out of memory");
setmalloctag(v, getcallerpc(&n));
return v;
}
void*
erealloc(void *v, ulong n)
{
v = realloc(v, n);
if(v == nil)
sysfatal("out of memory");
setrealloctag(v, getcallerpc(&n));
return v;
}