aboutsummaryrefslogtreecommitdiffstats
path: root/openssl_missing.h
diff options
context:
space:
mode:
authorGOTOU Yuuzou <gotoyuzo@notwork.org>2003-06-27 07:27:02 +0000
committerGOTOU Yuuzou <gotoyuzo@notwork.org>2003-06-27 07:27:02 +0000
commitebe1f2d9e2528f39a256fcf367094cc6b1e42b34 (patch)
tree146fdd402f4d8659e6f689759737934a47fc7ef4 /openssl_missing.h
parent123b48b58f8f3c7b28306cfb7651d2072dc7a083 (diff)
downloadruby-openssl-history-ebe1f2d9e2528f39a256fcf367094cc6b1e42b34.tar.gz
avoid warning of mismatched prototypes.
Diffstat (limited to 'openssl_missing.h')
-rw-r--r--openssl_missing.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/openssl_missing.h b/openssl_missing.h
index e2af05f..eaa52ea 100644
--- a/openssl_missing.h
+++ b/openssl_missing.h
@@ -51,6 +51,11 @@ extern "C" {
int HMAC_CTX_copy(HMAC_CTX *out, HMAC_CTX *in);
#endif /* NO_HMAC */
+#if !defined(HAVE_X509_STORE_SET_EX_DATA)
+int X509_STORE_set_ex_data(X509_STORE *str, int idx, void *data);
+void *X509_STORE_get_ex_data(X509_STORE *str, int idx);
+#endif
+
#if defined(__cplusplus)
}
#endif