Change functions to ANSI C.
[oweals/openssl.git] / crypto / asn1 / f_int.c
index a877e0cd52f2b62aac676595cd6308d42eace530..85ec6cec66c30206b5f6b9cad624cf0e10e93bbc 100644 (file)
@@ -61,9 +61,7 @@
 #include "buffer.h"
 #include "x509.h"
 
-int i2a_ASN1_INTEGER(bp, a)
-BIO *bp;
-ASN1_INTEGER *a;
+int i2a_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *a)
        {
        int i,n=0;
        static const char *h="0123456789ABCDEF";
@@ -96,11 +94,7 @@ err:
        return(-1);
        }
 
-int a2i_ASN1_INTEGER(bp,bs,buf,size)
-BIO *bp;
-ASN1_INTEGER *bs;
-char *buf;
-int size;
+int a2i_ASN1_INTEGER(BIO *bp, ASN1_INTEGER *bs, char *buf, int size)
        {
        int ret=0;
        int i,j,k,m,n,again,bufsize;