diff contrib/fuzz/xdiff.cc @ 43809:51a99e09c54b

fuzz: always define LLVMFuzzerInitialize() even if we don't need it This will make it easier to test our fuzzers outside oss-fuzz. Differential Revision: https://phab.mercurial-scm.org/D7560
author Augie Fackler <augie@google.com>
date Fri, 06 Dec 2019 15:05:34 -0500
parents 78df32a8b6f4
children 5a9e2ae9899b
line wrap: on
line diff
--- a/contrib/fuzz/xdiff.cc	Fri Dec 06 15:06:10 2019 -0500
+++ b/contrib/fuzz/xdiff.cc	Fri Dec 06 15:05:34 2019 -0500
@@ -14,6 +14,11 @@
 
 extern "C" {
 
+int LLVMFuzzerInitialize(int *argc, char ***argv)
+{
+	return 0;
+}
+
 int hunk_consumer(long a1, long a2, long b1, long b2, void *priv)
 {
 	// TODO: probably also test returning -1 from this when things break?