aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2001-11-05 18:18:12 +0000
committerRichard Levitte <levitte@openssl.org>2001-11-05 18:18:12 +0000
commit6acc3b96899918e959e365a7a92419fd32070fa4 (patch)
treecd274c1393241e80a89fd338764cfb73adfc1be8
parent66aa85669838ed75cea06dacd502e12d560e45b0 (diff)
downloadopenssl-6acc3b96899918e959e365a7a92419fd32070fa4.tar.gz
Place the OpenSSL-specific headers back so they always get included,
or we get a dependency war in Makefile.ssl
-rw-r--r--crypto/engine/hw_openbsd_dev_crypto.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/crypto/engine/hw_openbsd_dev_crypto.c b/crypto/engine/hw_openbsd_dev_crypto.c
index 1309176da8..eb10d1a89e 100644
--- a/crypto/engine/hw_openbsd_dev_crypto.c
+++ b/crypto/engine/hw_openbsd_dev_crypto.c
@@ -53,6 +53,12 @@
*
*/
+#include <openssl/engine.h>
+#include <openssl/evp.h>
+#include "eng_int.h"
+/* Maybe this is needed? ... */
+#include "../evp/evp_locl.h"
+
#ifndef OPENSSL_OPENBSD_DEV_CRYPTO
void ENGINE_load_openbsd_dev_crypto(void)
@@ -66,14 +72,9 @@ void ENGINE_load_openbsd_dev_crypto(void)
#include <fcntl.h>
#include <stdio.h>
#include <errno.h>
-#include <unistd.h>
#include <assert.h>
+#include <unistd.h>
#include <sys/ioctl.h>
-#include <openssl/engine.h>
-#include <openssl/evp.h>
-#include "eng_int.h"
-/* Maybe this is needed? ... */
-#include "../evp/evp_locl.h"
#include <crypto/cryptodev.h>