summaryrefslogtreecommitdiffstats
path: root/crypto/evp/e_rc4.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2003-03-20 23:29:17 +0000
committerRichard Levitte <levitte@openssl.org>2003-03-20 23:29:17 +0000
commit39c4b7092c2acb0051c57fb0f6c05490cf7274c4 (patch)
tree207b32e226f36a6bdbc261a0c18cc2489480d8f9 /crypto/evp/e_rc4.c
parentc7e7fc3ee42c03313b4957ea23db3b6f40d3affb (diff)
Make sure we get the definition of OPENSSL_NO_RC4.
Diffstat (limited to 'crypto/evp/e_rc4.c')
-rw-r--r--crypto/evp/e_rc4.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/evp/e_rc4.c b/crypto/evp/e_rc4.c
index d58f507837..eadd8d4274 100644
--- a/crypto/evp/e_rc4.c
+++ b/crypto/evp/e_rc4.c
@@ -56,10 +56,11 @@
* [including the GNU Public Licence.]
*/
-#ifndef OPENSSL_NO_RC4
-
#include <stdio.h>
#include "cryptlib.h"
+
+#ifndef OPENSSL_NO_RC4
+
#include <openssl/evp.h>
#include <openssl/objects.h>
#include <openssl/rc4.h>