From 33cc07f79acf91dfbe4970e94665c53f42c89112 Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 1 Feb 2003 20:55:29 +0000 Subject: [PATCH] Fix warning. --- crypto/engine/engine.h | 3 +++ crypto/evp/c_all.c | 1 + 2 files changed, 4 insertions(+) diff --git a/crypto/engine/engine.h b/crypto/engine/engine.h index 43500a8676..f56c1c67ee 100644 --- a/crypto/engine/engine.h +++ b/crypto/engine/engine.h @@ -685,6 +685,9 @@ typedef int (*dynamic_bind_engine)(ENGINE *e, const char *id, * values. */ void *ENGINE_get_static_state(void); +#if defined(__OpenBSD__) || defined(__FreeBSD__) +void ENGINE_setup_bsd_cryptodev(void); +#endif /* BEGIN ERROR CODES */ /* The following lines are auto generated by the script mkerr.pl. Any changes diff --git a/crypto/evp/c_all.c b/crypto/evp/c_all.c index af3dd26162..19737f39f6 100644 --- a/crypto/evp/c_all.c +++ b/crypto/evp/c_all.c @@ -59,6 +59,7 @@ #include #include "cryptlib.h" #include +#include #if 0 #undef OpenSSL_add_all_algorithms -- 2.40.0