1#include <malloc.h> 2 3void *xreallocarray(void *ptr, size_t nmemb, size_t size) { 4 return reallocarray(ptr, nmemb, size); 5}