mirror of
https://github.com/apple/foundationdb.git
synced 2025-06-02 19:25:52 +08:00
10 lines
165 B
C
10 lines
165 B
C
#define FDB_API_VERSION 710
|
|
#include <foundationdb/fdb_c.h>
|
|
|
|
int main(int argc, char* argv[]) {
|
|
(void)argc;
|
|
(void)argv;
|
|
fdb_select_api_version(710);
|
|
return 0;
|
|
}
|