Initial commit

This commit is contained in:
2026-01-23 22:15:36 +01:00
commit ca60108606
167 changed files with 5311 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#include "mimalloc.h"
#include <stdlib.h>
#include <stdio.h>
int main() {
void *data = mi_malloc(32);
printf("mimalloc version %d\n", mi_version());
mi_free(data);
return EXIT_SUCCESS;
}