amdgpu-pro: 17.10 -> 17.40

This commit is contained in:
David McFarland
2018-01-09 20:49:55 -04:00
parent 6d3ff29d03
commit 68dda232d2
10 changed files with 171 additions and 164 deletions

View File

@@ -0,0 +1,5 @@
#include <malloc.h>
void *xreallocarray(void *ptr, size_t nmemb, size_t size) {
return reallocarray(ptr, nmemb, size);
}