libmdbx/test/extra/probe.c++

12 lines
228 B
C++

#include <iostream>
#include "mdbx.h++"
int main(int argc, const char *argv[]) {
(void)argc;
(void)argv;
std::cout
<< "OK (but this is do-nothing test just for a check for compilation)\n";
return EXIT_SUCCESS;
}