mariadb/newbrt/tests/test_toku_malloc_plain_free.c
Bradley C. Kuszmaul aff41cf349 close[t:3683] add svn:keywors. Fixes #3683.
git-svn-id: file:///svn/toku/tokudb@32707 c7de825b-a66e-492c-adef-691d508d4ae1
2013-04-16 23:59:42 -04:00

15 lines
258 B
C

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