summaryrefslogtreecommitdiff
path: root/crypto/cast
diff options
context:
space:
mode:
authorappro <appro>2005-04-13 20:51:42 +0000
committerappro <appro>2005-04-13 20:51:42 +0000
commit643193ad5dce26a20c6c6d2d77a5ba8517aaa543 (patch)
treec650144f6226f2aafdcff240c9c5665788b0d1b9 /crypto/cast
parent0a2ae97c7aa97141a08d25e55cb11af5713a8461 (diff)
downloadopenssl-643193ad5dce26a20c6c6d2d77a5ba8517aaa543.tar.gz
Zap OPENSSL_EXTERN on symbols, which are not meant to be local to DLL.
Diffstat (limited to 'crypto/cast')
-rw-r--r--crypto/cast/cast_lcl.h21
1 files changed, 8 insertions, 13 deletions
diff --git a/crypto/cast/cast_lcl.h b/crypto/cast/cast_lcl.h
index 37f41cc6a..e756021a3 100644
--- a/crypto/cast/cast_lcl.h
+++ b/crypto/cast/cast_lcl.h
@@ -64,11 +64,6 @@
#endif
-#ifdef OPENSSL_BUILD_SHLIBCRYPTO
-# undef OPENSSL_EXTERN
-# define OPENSSL_EXTERN OPENSSL_EXPORT
-#endif
-
#undef c2l
#define c2l(c,l) (l =((unsigned long)(*((c)++))) , \
l|=((unsigned long)(*((c)++)))<< 8L, \
@@ -222,11 +217,11 @@
}
#endif
-OPENSSL_EXTERN const CAST_LONG CAST_S_table0[256];
-OPENSSL_EXTERN const CAST_LONG CAST_S_table1[256];
-OPENSSL_EXTERN const CAST_LONG CAST_S_table2[256];
-OPENSSL_EXTERN const CAST_LONG CAST_S_table3[256];
-OPENSSL_EXTERN const CAST_LONG CAST_S_table4[256];
-OPENSSL_EXTERN const CAST_LONG CAST_S_table5[256];
-OPENSSL_EXTERN const CAST_LONG CAST_S_table6[256];
-OPENSSL_EXTERN const CAST_LONG CAST_S_table7[256];
+extern const CAST_LONG CAST_S_table0[256];
+extern const CAST_LONG CAST_S_table1[256];
+extern const CAST_LONG CAST_S_table2[256];
+extern const CAST_LONG CAST_S_table3[256];
+extern const CAST_LONG CAST_S_table4[256];
+extern const CAST_LONG CAST_S_table5[256];
+extern const CAST_LONG CAST_S_table6[256];
+extern const CAST_LONG CAST_S_table7[256];