fuzz/driver.c: appease -Wmissing-prototypes
Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> (Merged from https://github.com/openssl/openssl/pull/7138)
This commit is contained in:
parent
d3a9fb10ee
commit
63c5ac801f
1 changed files with 3 additions and 0 deletions
|
@ -15,6 +15,9 @@
|
|||
|
||||
#ifndef OPENSSL_NO_FUZZ_LIBFUZZER
|
||||
|
||||
int LLVMFuzzerInitialize(int *argc, char ***argv);
|
||||
int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len);
|
||||
|
||||
int LLVMFuzzerInitialize(int *argc, char ***argv)
|
||||
{
|
||||
return FuzzerInitialize(argc, argv);
|
||||
|
|
Loading…
Reference in a new issue