commit | 41a686bb9fd36c8eff551f0fc91f47f5631ec421 | [log] [tgz] |
---|---|---|
author | Michael Schuster <michael@schuster.ms> | Sat Jun 01 21:08:45 2024 +0200 |
committer | Minos Galanakis <minos.galanakis@arm.com> | Tue Aug 06 12:09:13 2024 +0100 |
tree | 0ffe8d1a666901180978d5d0ae2f91ab79ced006 | |
parent | 3a4c43174cd49a9fd75eb4e5c34dab148877daad [diff] [blame] |
Fix missing-prototype error in programs/fuzz by moving LLVMFuzzerTestOneInput prototype to common.h Signed-off-by: Michael Schuster <michael@schuster.ms>
diff --git a/programs/fuzz/fuzz_x509crt.c b/programs/fuzz/fuzz_x509crt.c index 3eee072..74d3b07 100644 --- a/programs/fuzz/fuzz_x509crt.c +++ b/programs/fuzz/fuzz_x509crt.c
@@ -1,5 +1,6 @@ #include <stdint.h> #include "mbedtls/x509_crt.h" +#include "common.h" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {