mirror of
https://github.com/isar/libmdbx.git
synced 2024-12-28 19:08:50 +08:00
12 lines
228 B
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;
|
|
}
|