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.
This commit is contained in:
Geoff Thorpe 2002-10-16 21:50:28 +00:00
parent 314c667050
commit 5be1264b7e
5 changed files with 5 additions and 0 deletions

View File

@ -54,6 +54,7 @@
*/
#include <stdio.h>
#include <string.h>
#include <openssl/crypto.h>
/* #include <openssl/pem.h> */
#include <openssl/dso.h>

View File

@ -57,6 +57,7 @@
*/
#include <stdio.h>
#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>

View File

@ -57,6 +57,7 @@
*/
#include <stdio.h>
#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>

View File

@ -51,6 +51,7 @@
====================================================================*/
#include <stdio.h>
#include <string.h>
#include <openssl/crypto.h>
#include <openssl/pem.h>
#include <openssl/dso.h>

View File

@ -59,6 +59,7 @@
*/
#include <stdio.h>
#include <string.h>
#include <openssl/crypto.h>
#include <openssl/buffer.h>
#include <openssl/dso.h>