mirror of
https://github.com/isar/libmdbx.git
synced 2024-12-29 09:58:48 +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;
|
||
|
}
|