summaryrefslogtreecommitdiff
path: root/perl
diff options
context:
space:
mode:
authorulf <ulf>1999-04-19 21:25:39 +0000
committerulf <ulf>1999-04-19 21:25:39 +0000
commitc15c32f4b8c5290db6791c652d9187716bd3d15a (patch)
tree776c0c1c5687edc8659084b838ddaadbe6b9d29e /perl
parentcb859f5141c1672fc79d198b75426dd618b1fc25 (diff)
downloadopenssl-c15c32f4b8c5290db6791c652d9187716bd3d15a.tar.gz
Change functions to ANSI C.
Diffstat (limited to 'perl')
-rw-r--r--perl/openssl_cb.c24
1 files changed, 6 insertions, 18 deletions
diff --git a/perl/openssl_cb.c b/perl/openssl_cb.c
index c093ae0bd..7a880d97a 100644
--- a/perl/openssl_cb.c
+++ b/perl/openssl_cb.c
@@ -55,10 +55,8 @@
* [including the GNU Public Licence.]
*/
-SV *new_ref(type,obj,mort)
-char *type;
-char *obj;
- {
+SV *new_ref(char *type, char *obj, int mort)
+{
SV *ret;
if (mort)
@@ -69,13 +67,8 @@ char *obj;
return(ret);
}
-int ex_new(obj,data,ad,idx,argl,argp)
-char *obj;
-SV *data;
-CRYPTO_EX_DATA *ad;
-int idx;
-long argl;
-char *argp;
+int ex_new(char *obj, SV *data, CRYPTO_EX_DATA *ad, int idx, long argl,
+ char *argp)
{
SV *sv;
@@ -86,13 +79,8 @@ fprintf(stderr,"ex_new idx=%d %08X %s\n",idx,obj,argp);
return(1);
}
-void ex_cleanup(obj,data,ad,idx,argl,argp)
-char *obj;
-SV *data;
-CRYPTO_EX_DATA *ad;
-int idx;
-long argl;
-char *argp;
+void ex_cleanup(char *obj, SV *data, CRYPTO_EX_DATA *ad, int idx, long argl,
+ char *argp)
{
pr_name("ex_cleanup");
fprintf(stderr,"ex_cleanup %08X %s\n",obj,argp);