summary refs log blame commit diff
path: root/pkgs/os-specific/linux/amdgpu-pro/xreallocarray.c
blob: ab47bacb8228186a83cc49b9e9d146c6bc9698c5 (plain) (tree)
1
2
3
4
5




                                                           
#include <malloc.h>

void *xreallocarray(void *ptr, size_t nmemb, size_t size) {
  return reallocarray(ptr, nmemb, size);
}