mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
2d351ec3d4
git-svn-id: file:///svn/tokudb@1026 c7de825b-a66e-492c-adef-691d508d4ae1
9 lines
121 B
C
9 lines
121 B
C
#include "memory.h"
|
|
#include "stdlib.h"
|
|
|
|
int main () {
|
|
char *m=toku_malloc(5);
|
|
m=m;
|
|
free(m);
|
|
return 0;
|
|
}
|