summaryrefslogtreecommitdiffstats
path: root/src/xxhash-test.c
blob: b0649ea0d0925219aec617c9b9d42e8bd597cdfa (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * This file is part of MXE. See LICENSE.md for licensing information.
 */

#include <xxhash.h>

int main() {
    XXH32_state_t* state = XXH32_createState();
    XXH32_freeState(state);
    return 0;
}