diff options
author | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:29:06 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:29:06 +0100 |
commit | c7e7fc3ee42c03313b4957ea23db3b6f40d3affb (patch) | |
tree | d6ab523293737e97b9d23c34409d9469f3e4b14c /crypto/evp/e_rc2.c | |
parent | Make sure we get the definition of OPENSSL_NO_IDEA. (diff) | |
download | openssl-c7e7fc3ee42c03313b4957ea23db3b6f40d3affb.tar.xz openssl-c7e7fc3ee42c03313b4957ea23db3b6f40d3affb.zip |
Make sure we get the definition of OPENSSL_NO_RC2.
Diffstat (limited to 'crypto/evp/e_rc2.c')
-rw-r--r-- | crypto/evp/e_rc2.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/crypto/evp/e_rc2.c b/crypto/evp/e_rc2.c index d42cbfd17e..3932f60e59 100644 --- a/crypto/evp/e_rc2.c +++ b/crypto/evp/e_rc2.c @@ -56,10 +56,11 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_RC2 - #include <stdio.h> #include "cryptlib.h" + +#ifndef OPENSSL_NO_RC2 + #include <openssl/evp.h> #include <openssl/objects.h> #include "evp_locl.h" |