diff options
author | Yann Collet <yann.collet.73@gmail.com> | 2016-06-29 19:48:27 (GMT) |
---|---|---|
committer | Yann Collet <yann.collet.73@gmail.com> | 2016-06-29 19:48:27 (GMT) |
commit | 91cce757f521b99fe9bb558d80e76c9419eec6a1 (patch) | |
tree | deda4ff41437cafed6f66099b57a0040f471641c /programs/fuzzer.c | |
parent | 5540f4f93e32c925b581d8778f5636a23479b845 (diff) | |
download | lz4-91cce757f521b99fe9bb558d80e76c9419eec6a1.zip lz4-91cce757f521b99fe9bb558d80e76c9419eec6a1.tar.gz lz4-91cce757f521b99fe9bb558d80e76c9419eec6a1.tar.bz2 |
Updated xxhash library to v0.6.1
Diffstat (limited to 'programs/fuzzer.c')
-rw-r--r-- | programs/fuzzer.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/programs/fuzzer.c b/programs/fuzzer.c index f1da1a8..60fd64f 100644 --- a/programs/fuzzer.c +++ b/programs/fuzzer.c @@ -1,6 +1,6 @@ /* fuzzer.c - Fuzzer test tool for LZ4 - Copyright (C) Yann Collet 2012-2015 + Copyright (C) Yann Collet 2012-2016 GPL v2 License @@ -19,11 +19,11 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. You can contact the author at : - - LZ4 source mirror : https://github.com/Cyan4973/lz4 - - LZ4 public forum : https://groups.google.com/forum/#!forum/lz4c + - LZ4 homepage : http://www.lz4.org + - LZ4 source repo : https://github.com/Cyan4973/lz4 */ -/************************************** +/*-************************************ * Compiler options **************************************/ #ifdef _MSC_VER /* Visual Studio */ @@ -39,7 +39,7 @@ #endif -/************************************** +/*-************************************ * Includes **************************************/ #include <stdlib.h> @@ -47,6 +47,7 @@ #include <string.h> /* strcmp */ #include "lz4.h" #include "lz4hc.h" +#define XXH_STATIC_LINKING_ONLY #include "xxhash.h" /* Use ftime() if gettimeofday() is not available on your target */ |