Android build: fix usage of NDK home variable ($ndk_var)
[openssl.git] / fuzz / driver.c
index 21bbb255afe51066f16af31dff214dee347bba28..54d67de202db882bb0e1fca5b5c583bc99044986 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
+ * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
  *
  * Licensed under the OpenSSL licenses, (the "License");
  * you may not use this file except in compliance with the License.
@@ -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);