Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 18.09-beta 5 lines 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}