summaryrefslogtreecommitdiffstats
path: root/crypto/engine
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2006-08-28 17:01:04 +0000
committerBen Laurie <ben@openssl.org>2006-08-28 17:01:04 +0000
commit777c47acbeecf9602cc465864c9f5f2c609c989d (patch)
treee35a78fad59225fc817f609748c8ff2b9e9b2afe /crypto/engine
parent5776c3c4c6663cb1498e83ed20894af4b59c78aa (diff)
Make things static that should be. Declare stuff in headers that should be.
Fix warnings.
Diffstat (limited to 'crypto/engine')
-rw-r--r--crypto/engine/engine.h4
-rw-r--r--crypto/engine/tb_asnmth.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/crypto/engine/engine.h b/crypto/engine/engine.h
index 9a2eb68646..eda9752f54 100644
--- a/crypto/engine/engine.h
+++ b/crypto/engine/engine.h
@@ -391,6 +391,10 @@ int ENGINE_register_pkey_meths(ENGINE *e);
void ENGINE_unregister_pkey_meths(ENGINE *e);
void ENGINE_register_all_pkey_meths(void);
+int ENGINE_register_pkey_asn1_meths(ENGINE *e);
+void ENGINE_unregister_pkey_asn1_meths(ENGINE *e);
+void ENGINE_register_all_pkey_asn1_meths(void);
+
/* These functions register all support from the above categories. Note, use of
* these functions can result in static linkage of code your application may not
* need. If you only need a subset of functionality, consider using more
diff --git a/crypto/engine/tb_asnmth.c b/crypto/engine/tb_asnmth.c
index 8aaaf004f5..b3a4fd533c 100644
--- a/crypto/engine/tb_asnmth.c
+++ b/crypto/engine/tb_asnmth.c
@@ -87,7 +87,7 @@ int ENGINE_register_pkey_asn1_meths(ENGINE *e)
return 1;
}
-void ENGINE_register_all_pkey_asn1_meths()
+void ENGINE_register_all_pkey_asn1_meths(void)
{
ENGINE *e;