From 57001ce3bb97455d799f0a2180b7bf1287ffd71a Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Fri, 1 Sep 2017 21:48:41 +0100 Subject: ossfuzz: Move to C++ for curl_fuzzer. Automake gets confused if you want to use C++ static libraries with C code - basically we need to involve the clang++ linker. The easiest way of achieving this is to rename the C code as C++ code. This gets us a bit further along the path and ought to be compatible with Google's version of clang. --- tests/fuzz/curl_fuzzer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/fuzz/curl_fuzzer.h') diff --git a/tests/fuzz/curl_fuzzer.h b/tests/fuzz/curl_fuzzer.h index a0c9d596a..634160648 100644 --- a/tests/fuzz/curl_fuzzer.h +++ b/tests/fuzz/curl_fuzzer.h @@ -21,6 +21,7 @@ ***************************************************************************/ #include +#include /** * TLV types. @@ -107,7 +108,6 @@ typedef struct fuzz_data } FUZZ_DATA; /* Function prototypes */ -int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); uint32_t to_u32(uint8_t b[4]); uint16_t to_u16(uint8_t b[2]); int fuzz_initialize_fuzz_data(FUZZ_DATA *fuzz, -- cgit v1.2.3