libutil: Add enreallocarray

This commit is contained in:
Michael Forney
2019-04-16 17:41:39 -07:00
parent 5d49332d4f
commit 3fec3e2f4c
2 changed files with 8 additions and 1 deletions

View File

@@ -40,11 +40,17 @@ reallocarray(void *optr, size_t nmemb, size_t size)
void *
ereallocarray(void *optr, size_t nmemb, size_t size)
{
return enreallocarray(1, optr, nmemb, size);
}
void *
enreallocarray(int status, void *optr, size_t nmemb, size_t size)
{
void *p;
if (!(p = reallocarray(optr, nmemb, size)))
eprintf("reallocarray: out of memory\n");
enprintf(status, "reallocarray: out of memory\n");
return p;
}