blob: e7eca64bbb686338bd97f73a3c10fa1dadc56296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* This file is part of MXE.
* See index.html for further information.
*/
#include <xxhash.h>
int main() {
XXH32_state_t* state = XXH32_createState();
XXH32_freeState(state);
return 0;
}
|