mariadb/newbrt/tests/test_toku_malloc_plain_free.c
Yoni Fogel 049c7625a3 Addresses #1765 Merge [12079] into main (pthreads-win32 for windows)
git-svn-id: file:///svn/toku/tokudb@12081 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:57:53 -04:00

14 lines
244 B
C

#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;
}