about summary refs log tree commit diff
path: root/src/afl-performance.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-09-03 09:59:23 +0200
committervan Hauser <vh@thc.org>2020-09-03 09:59:23 +0200
commit4c48d3a3ad1c0c8199b40ef47517b8a736cd5579 (patch)
treeb9ac886ec6d18d9a6a371595bf66e78fd4f45d2e /src/afl-performance.c
parent020b8a49648ec5f58f44dc104f3a3c83624a41d1 (diff)
downloadafl++-4c48d3a3ad1c0c8199b40ef47517b8a736cd5579.tar.gz
update xxh3 to 0.8.0, fix is_ascii
Diffstat (limited to 'src/afl-performance.c')
-rw-r--r--src/afl-performance.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/afl-performance.c b/src/afl-performance.c
index a9d7cefa..7a80ac4b 100644
--- a/src/afl-performance.c
+++ b/src/afl-performance.c
@@ -22,7 +22,10 @@
 #include <stdint.h>
 #include "afl-fuzz.h"
 #include "types.h"
-#include "xxh3.h"
+
+#define XXH_INLINE_ALL
+#include "xxhash.h"
+#undef XXH_INLINE_ALL
 
 /* we use xoshiro256** instead of rand/random because it is 10x faster and has
    better randomness properties. */