1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-30 05:23:50 +03:00
Files
mariadb/newbrt/test_toku_malloc_plain_free.c
2007-12-10 11:28:00 +00:00

10 lines
121 B
C

#include "memory.h"
#include "stdlib.h"
int main () {
char *m=toku_malloc(5);
m=m;
free(m);
return 0;
}