Last active
          July 15, 2022 00:22 
        
      - 
      
 - 
        
Save JJL772/de1f9818a01ddf9e9ab4450d863b9f03 to your computer and use it in GitHub Desktop.  
Revisions
- 
        
JJL772 revised this gist
Jul 15, 2022 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,4 @@ // Compile with: gcc -o libmimalloc-proxy.so -shared mimalloc-stub.c #include <stdlib.h> #include <stddef.h>  - 
        
JJL772 created this gist
Jul 15, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,6 @@ #include <stdlib.h> #include <stddef.h> void* reallocarray(void* ptr, size_t nmemb, size_t size) { return realloc(ptr, nmemb*size); }