mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 08:47:17 +01:00
11 lines
256 B
C
11 lines
256 B
C
#include "maxminddb_test_helper.h"
|
|
|
|
int main(void)
|
|
{
|
|
const char *version = MMDB_lib_version();
|
|
if (ok((version != NULL), "MMDB_lib_version exists")) {
|
|
is(version, PACKAGE_VERSION, "version is " PACKAGE_VERSION);
|
|
}
|
|
done_testing();
|
|
}
|