mxe/src/xxhash-test.c

12 lines
205 B
C

/*
* 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;
}