aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-03-20 23:29:38 +0000
committerRichard Levitte <levitte@openssl.org>2003-03-20 23:29:38 +0000
commit9e9e8cb6a8c26210f65823e2b28f7e4eb47817f5 (patch)
treed36a73dee52364f319f5c828f8cc17010a8185d7
parentf118514501c5fdd2c5b83130eba94df47c57c474 (diff)
downloadopenssl-9e9e8cb6a8c26210f65823e2b28f7e4eb47817f5.tar.gz
Make sure we get the definition of OPENSSL_NO_DES.
-rw-r--r--crypto/evp/e_des.c2
-rw-r--r--crypto/evp/e_des3.c2
-rw-r--r--crypto/evp/e_xcbc_d.c4
3 files changed, 5 insertions, 3 deletions
diff --git a/crypto/evp/e_des.c b/crypto/evp/e_des.c
index 105266a4b3..92f6ebc343 100644
--- a/crypto/evp/e_des.c
+++ b/crypto/evp/e_des.c
@@ -56,9 +56,9 @@
* [including the GNU Public Licence.]
*/
-#ifndef OPENSSL_NO_DES
#include <stdio.h>
#include "cryptlib.h"
+#ifndef OPENSSL_NO_DES
#include <openssl/evp.h>
#include <openssl/objects.h>
#include "evp_locl.h"
diff --git a/crypto/evp/e_des3.c b/crypto/evp/e_des3.c
index 077860e7b6..e036d07ba9 100644
--- a/crypto/evp/e_des3.c
+++ b/crypto/evp/e_des3.c
@@ -56,9 +56,9 @@
* [including the GNU Public Licence.]
*/
-#ifndef OPENSSL_NO_DES
#include <stdio.h>
#include "cryptlib.h"
+#ifndef OPENSSL_NO_DES
#include <openssl/evp.h>
#include <openssl/objects.h>
#include "evp_locl.h"
diff --git a/crypto/evp/e_xcbc_d.c b/crypto/evp/e_xcbc_d.c
index a6f849e93d..cb82815a82 100644
--- a/crypto/evp/e_xcbc_d.c
+++ b/crypto/evp/e_xcbc_d.c
@@ -56,9 +56,11 @@
* [including the GNU Public Licence.]
*/
-#ifndef OPENSSL_NO_DES
#include <stdio.h>
#include "cryptlib.h"
+
+#ifndef OPENSSL_NO_DES
+
#include <openssl/evp.h>
#include <openssl/objects.h>
#include <openssl/des.h>