summaryrefslogtreecommitdiffstats
path: root/crypto/pem
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-03-09 12:06:23 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-03-09 12:06:23 +0000
commitcefa7ce2848616380365bf0b2e1bdf9e3c34b591 (patch)
treee62ea89f22ae8ea5c1887b72efa5fc9409d093b4 /crypto/pem
parentee4041b8bd1aad2402f949fa828bf74a103ccc51 (diff)
PR: 1857
Submitted by: Jurko Gospodnetić <jurko.gospodnetic@docte.hr> Reviewed by: steve@openssl.org Make OPENSSL_NO_FP_API work again.
Diffstat (limited to 'crypto/pem')
-rw-r--r--crypto/pem/pem.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/crypto/pem/pem.h b/crypto/pem/pem.h
index 6f8e01544b..6c193f1cbf 100644
--- a/crypto/pem/pem.h
+++ b/crypto/pem/pem.h
@@ -215,7 +215,9 @@ typedef struct pem_ctx_st
#define IMPLEMENT_PEM_read_fp(name, type, str, asn1) /**/
#define IMPLEMENT_PEM_write_fp(name, type, str, asn1) /**/
+#define IMPLEMENT_PEM_write_fp_const(name, type, str, asn1) /**/
#define IMPLEMENT_PEM_write_cb_fp(name, type, str, asn1) /**/
+#define IMPLEMENT_PEM_write_cb_fp_const(name, type, str, asn1) /**/
#else
@@ -355,6 +357,7 @@ int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
#define DECLARE_PEM_read_fp(name, type) /**/
#define DECLARE_PEM_write_fp(name, type) /**/
+#define DECLARE_PEM_write_fp_const(name, type) /**/
#define DECLARE_PEM_write_cb_fp(name, type) /**/
#else
@@ -392,6 +395,7 @@ int PEM_write_bio_##name(BIO *bp, type *x, const EVP_CIPHER *enc, \
#define DECLARE_PEM_read_bio(name, type) /**/
#define DECLARE_PEM_write_bio(name, type) /**/
+#define DECLARE_PEM_write_bio_const(name, type) /**/
#define DECLARE_PEM_write_cb_bio(name, type) /**/
#endif