commit | e708e86a9b381a9d9bf79dd4551fd8910765b37f | [log] [tgz] |
---|---|---|
author | Michael Schuster <michael@schuster.ms> | Sat Jun 01 21:08:45 2024 +0200 |
committer | Minos Galanakis <minos.galanakis@arm.com> | Fri Aug 09 10:29:58 2024 +0100 |
tree | 73622f4de2d1696c3835c84fc05ac6389f2ff607 | |
parent | 4595e6872d7f9ee5e8720929a3315932b18dae73 [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_pubkey.c b/programs/fuzz/fuzz_pubkey.c index 0b153b1..b2500e5 100644 --- a/programs/fuzz/fuzz_pubkey.c +++ b/programs/fuzz/fuzz_pubkey.c
@@ -1,6 +1,7 @@ #include <stdint.h> #include <stdlib.h> #include "mbedtls/pk.h" +#include "common.h" int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {