mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
a9c69fd3fe
Original message: Create a branch to make Doug Lea's malloc work. The big problem is having another malloc() in the system breaks things. Address #1343, #1032.
13 lines
214 B
C
13 lines
214 B
C
#include "memory.h"
|
|
#include "stdlib.h"
|
|
|
|
#include "test.h"
|
|
|
|
int
|
|
test_main (int argc, const char *argv[]) {
|
|
default_parse_args(argc, argv);
|
|
char *m=toku_malloc(5);
|
|
m=m;
|
|
toku_free(m);
|
|
return 0;
|
|
}
|