From: Ralf S. Engelschall Date: Sun, 8 Aug 1999 11:25:32 +0000 (+0000) Subject: Fix two remaining prototype-related warnings X-Git-Tag: OpenSSL_0_9_4~11 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=1d5edd0882da3914455b22f9a3b65e0a8f5903f1 Fix two remaining prototype-related warnings --- diff --git a/crypto/asn1/a_digest.c b/crypto/asn1/a_digest.c index 692d4d9f1d..8c45add557 100644 --- a/crypto/asn1/a_digest.c +++ b/crypto/asn1/a_digest.c @@ -64,6 +64,7 @@ #include "cryptlib.h" #include #include +#include int ASN1_digest(int (*i2d)(), EVP_MD *type, char *data, unsigned char *md, unsigned int *len) diff --git a/crypto/pem/pem.h b/crypto/pem/pem.h index 91f718826a..fc333e42c8 100644 --- a/crypto/pem/pem.h +++ b/crypto/pem/pem.h @@ -564,6 +564,8 @@ DECLARE_PEM_rw(DHparams, DH) DECLARE_PEM_rw_cb(PrivateKey, EVP_PKEY) +int PEM_write_bio_PKCS8PrivateKey(BIO *, EVP_PKEY *, const EVP_CIPHER *, + char *, int, pem_password_cb *, void *); int PEM_write_PKCS8PrivateKey(FILE *fp,EVP_PKEY *x,const EVP_CIPHER *enc, char *kstr,int klen, pem_password_cb *cd, void *u); #endif /* SSLEAY_MACROS */