at 18.09-beta 124 B view raw
1#include <malloc.h> 2 3void *xreallocarray(void *ptr, size_t nmemb, size_t size) { 4 return reallocarray(ptr, nmemb, size); 5}