mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 14:54:20 +01:00
07bd330963
toku_portability.h is now the first header include for all newbrt test files git-svn-id: file:///svn/toku/tokudb@8690 c7de825b-a66e-492c-adef-691d508d4ae1
14 lines
244 B
C
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;
|
|
}
|