mirror of
https://github.com/MariaDB/server.git
synced 2025-03-08 04:03:30 +01:00
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;
|
|
}
|