mirror of
https://github.com/MariaDB/server.git
synced 2025-01-23 07:14:17 +01:00
10 lines
121 B
C
10 lines
121 B
C
|
#include "memory.h"
|
||
|
#include "stdlib.h"
|
||
|
|
||
|
int main () {
|
||
|
char *m=toku_malloc(5);
|
||
|
m=m;
|
||
|
free(m);
|
||
|
return 0;
|
||
|
}
|