diff options
author | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:28:27 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2003-03-21 00:28:27 +0100 |
commit | fb10590910a801dd0a1012e9df53a069a2dbd73c (patch) | |
tree | 26ed82f28dc2770fac4e8b288f2289cadbef1ddd /crypto | |
parent | Make sure we get the definition of OPENSSL_NO_BF. (diff) | |
download | openssl-fb10590910a801dd0a1012e9df53a069a2dbd73c.tar.xz openssl-fb10590910a801dd0a1012e9df53a069a2dbd73c.zip |
Make sure we get the definition of OPENSSL_NO_CAST.
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/evp/e_cast.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/evp/e_cast.c b/crypto/evp/e_cast.c index 3400fef187..d77bcd9298 100644 --- a/crypto/evp/e_cast.c +++ b/crypto/evp/e_cast.c @@ -56,10 +56,10 @@ * [including the GNU Public Licence.] */ -#ifndef OPENSSL_NO_CAST - #include <stdio.h> #include "cryptlib.h" + +#ifndef OPENSSL_NO_CAST #include <openssl/evp.h> #include <openssl/objects.h> #include "evp_locl.h" |