15 lines
212 B
C
15 lines
212 B
C
#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;
|
|
}
|