mariadb/newbrt/tests/test_toku_malloc_plain_free.c

15 lines
244 B
C
Raw Normal View History

#include <toku_portability.h>
#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;
}