diff options
author | jsing <> | 2014-05-22 17:53:00 +0000 |
---|---|---|
committer | jsing <> | 2014-05-22 17:53:00 +0000 |
commit | 6ad0ba42a7ed2a0a965264f958d1610e77ea3392 (patch) | |
tree | a9c417fe63b3c1f21c7f955e6f9898066cdbe0ea /src/lib/libcrypto/engine/eng_padlock.c | |
parent | 44969861a5fe3788fcc9114e6b407a669e709ad0 (diff) | |
download | openbsd-6ad0ba42a7ed2a0a965264f958d1610e77ea3392.tar.gz openbsd-6ad0ba42a7ed2a0a965264f958d1610e77ea3392.tar.bz2 openbsd-6ad0ba42a7ed2a0a965264f958d1610e77ea3392.zip |
Expand the OPENSSL_{GLOBAL,EXPORT,IMPORT,EXTERN} macros - this rids the
libssl tree from all uses of these defines.
ok miod@
Diffstat (limited to 'src/lib/libcrypto/engine/eng_padlock.c')
-rw-r--r-- | src/lib/libcrypto/engine/eng_padlock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/engine/eng_padlock.c b/src/lib/libcrypto/engine/eng_padlock.c index 5a80b2b16d..e727067f11 100644 --- a/src/lib/libcrypto/engine/eng_padlock.c +++ b/src/lib/libcrypto/engine/eng_padlock.c | |||
@@ -1088,9 +1088,9 @@ static RAND_METHOD padlock_rand = { | |||
1088 | 1088 | ||
1089 | #else /* !COMPILE_HW_PADLOCK */ | 1089 | #else /* !COMPILE_HW_PADLOCK */ |
1090 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | 1090 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE |
1091 | OPENSSL_EXPORT | 1091 | extern |
1092 | int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns); | 1092 | int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns); |
1093 | OPENSSL_EXPORT | 1093 | extern |
1094 | int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) { return 0; } | 1094 | int bind_engine(ENGINE *e, const char *id, const dynamic_fns *fns) { return 0; } |
1095 | IMPLEMENT_DYNAMIC_CHECK_FN() | 1095 | IMPLEMENT_DYNAMIC_CHECK_FN() |
1096 | #endif | 1096 | #endif |