summaryrefslogtreecommitdiffstats
path: root/crypto/cryptlib.c
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>1999-04-26 22:20:07 +0000
committerUlf Möller <ulf@openssl.org>1999-04-26 22:20:07 +0000
commit73d2257d978c7a201d6a914dc141ea1484d9aa6f (patch)
tree6089f64e2f7f10883762c3a9faa90001a526abdc /crypto/cryptlib.c
parent540e6c172e0e8456bda34bf71dd23e618d2eeb9d (diff)
Remove NOPROTO-related macros.
Diffstat (limited to 'crypto/cryptlib.c')
-rw-r--r--crypto/cryptlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cryptlib.c b/crypto/cryptlib.c
index 2810d3b10b..2a008729fb 100644
--- a/crypto/cryptlib.c
+++ b/crypto/cryptlib.c
@@ -151,12 +151,12 @@ void CRYPTO_set_add_lock_callback(int (*func)(int *num,int mount,int type,
add_lock_callback=func;
}
-unsigned long (*CRYPTO_get_id_callback(P_V))(P_V)
+unsigned long (*CRYPTO_get_id_callback(void))(void)
{
return(id_callback);
}
-void CRYPTO_set_id_callback(func) unsigned long (*func)(P_V);
+void CRYPTO_set_id_callback(unsigned long (*func)(void))
{
id_callback=func;
}