aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoff Thorpe <geoff@openssl.org>2002-10-16 21:50:28 +0000
committerGeoff Thorpe <geoff@openssl.org>2002-10-16 21:50:28 +0000
commit5be1264b7e4756a345bce6c1c8bb32f418c8a0aa (patch)
treedad9151e8e0687e1a7cc8c0fc838c9ff40fa963e
parent314c667050065bac7d1b0b1a767af6ff9585a596 (diff)
downloadopenssl-5be1264b7e4756a345bce6c1c8bb32f418c8a0aa.zip
openssl-5be1264b7e4756a345bce6c1c8bb32f418c8a0aa.tar.gz
openssl-5be1264b7e4756a345bce6c1c8bb32f418c8a0aa.tar.bz2
The ENGINE implementations in ./engines/ should be role models on how to
write external engines (and thus should require only installed openssl headers and libs to compile without warnings). So this gets rid of recently introduced compilation warnings (no longer including internal headers) by including string.h directly.
-rw-r--r--engines/e_4758_cca.c1
-rw-r--r--engines/e_atalla.c1
-rw-r--r--engines/e_cswift.c1
-rw-r--r--engines/e_sureware.c1
-rw-r--r--engines/e_ubsec.c1
5 files changed, 5 insertions, 0 deletions
diff --git a/engines/e_4758_cca.c b/engines/e_4758_cca.c
index 2e77f8c..203a8a7 100644
--- a/engines/e_4758_cca.c
+++ b/engines/e_4758_cca.c
@@ -54,6 +54,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
/* #include <openssl/pem.h> */
#include <openssl/dso.h>
diff --git a/engines/e_atalla.c b/engines/e_atalla.c
index be590f0..65339a0 100644
--- a/engines/e_atalla.c
+++ b/engines/e_atalla.c
@@ -57,6 +57,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>
diff --git a/engines/e_cswift.c b/engines/e_cswift.c
index 2ed9357..f3d3628 100644
--- a/engines/e_cswift.c
+++ b/engines/e_cswift.c
@@ -57,6 +57,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>
diff --git a/engines/e_sureware.c b/engines/e_sureware.c
index dced97c..9c2279c 100644
--- a/engines/e_sureware.c
+++ b/engines/e_sureware.c
@@ -51,6 +51,7 @@
====================================================================*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/pem.h>
#include <openssl/dso.h>
diff --git a/engines/e_ubsec.c b/engines/e_ubsec.c
index fe4a3b7..35af495 100644
--- a/engines/e_ubsec.c
+++ b/engines/e_ubsec.c
@@ -59,6 +59,7 @@
*/
#include <stdio.h>
+#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>