diff options
author | Bob Beck <beck@cvs.openbsd.org> | 1999-09-29 04:37:45 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 1999-09-29 04:37:45 +0000 |
commit | ca679cff5e2a72ad205119c981e695c8cc640970 (patch) | |
tree | 691368331190f762b9f484d059ec119620396521 /lib/libcrypto/cast/cast_lcl.h | |
parent | 30902ef04e4a800063b5f4afdbf1732ad34aa6b3 (diff) |
OpenSSL 0.9.4 merge
Diffstat (limited to 'lib/libcrypto/cast/cast_lcl.h')
-rw-r--r-- | lib/libcrypto/cast/cast_lcl.h | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/lib/libcrypto/cast/cast_lcl.h b/lib/libcrypto/cast/cast_lcl.h index 6587952a969..83cf382a914 100644 --- a/lib/libcrypto/cast/cast_lcl.h +++ b/lib/libcrypto/cast/cast_lcl.h @@ -60,6 +60,9 @@ #include <stdlib.h> #endif + +#include "openssl/e_os.h" /* OPENSSL_EXTERN */ + #undef c2l #define c2l(c,l) (l =((unsigned long)(*((c)++))) , \ l|=((unsigned long)(*((c)++)))<< 8L, \ @@ -213,12 +216,11 @@ } #endif -extern CAST_LONG CAST_S_table0[256]; -extern CAST_LONG CAST_S_table1[256]; -extern CAST_LONG CAST_S_table2[256]; -extern CAST_LONG CAST_S_table3[256]; -extern CAST_LONG CAST_S_table4[256]; -extern CAST_LONG CAST_S_table5[256]; -extern CAST_LONG CAST_S_table6[256]; -extern CAST_LONG CAST_S_table7[256]; - +OPENSSL_EXTERN CAST_LONG CAST_S_table0[256]; +OPENSSL_EXTERN CAST_LONG CAST_S_table1[256]; +OPENSSL_EXTERN CAST_LONG CAST_S_table2[256]; +OPENSSL_EXTERN CAST_LONG CAST_S_table3[256]; +OPENSSL_EXTERN CAST_LONG CAST_S_table4[256]; +OPENSSL_EXTERN CAST_LONG CAST_S_table5[256]; +OPENSSL_EXTERN CAST_LONG CAST_S_table6[256]; +OPENSSL_EXTERN CAST_LONG CAST_S_table7[256]; |