mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
b1a2ee871d
git-svn-id: file:///svn/tokudb@3866 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;
|
|
}
|