mariadb/newbrt/tests/test_toku_malloc_plain_free.c

16 lines
258 B
C
Raw Normal View History

#ident "$Id$"
#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;
}