summaryrefslogtreecommitdiff
path: root/support/IPLocator-master/t/version_t.c
blob: 9f28661403387fb0cc1d72fef97d300b7c272d69 (plain)
1
2
3
4
5
6
7
8
9
10
#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();
}