Fix --strict-warnings build of ppc-linux target
[openssl.git] / fuzz / x509.c
index 8d383e4ababcf2ba7708352aad02bdbffea339c7..926287da48617665eb947d25711841cfbb06cf02 100644 (file)
 #include <openssl/x509.h>
 #include <openssl/bio.h>
 #include <openssl/err.h>
+#include <openssl/rand.h>
 #include "fuzzer.h"
 
+#include "rand.inc"
+
 int FuzzerInitialize(int *argc, char ***argv)
 {
     OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CRYPTO_STRINGS, NULL);
     ERR_get_state();
     CRYPTO_free_ex_index(0, -1);
+    FuzzerSetRand();
     return 1;
 }