Change functions to ANSI C.
[openssl.git] / crypto / asn1 / x_sig.c
index 245a76b0f09b76fd460baa11718eec1e70b8a04e..b0675b74c3b96224caf31246dc8f2a1b766cf10e 100644 (file)
@@ -65,9 +65,7 @@
  * ASN1err(ASN1_F_X509_SIG_NEW,ERR_R_ASN1_LENGTH_MISMATCH);
  */
 
-int i2d_X509_SIG(a,pp)
-X509_SIG *a;
-unsigned char **pp;
+int i2d_X509_SIG(X509_SIG *a, unsigned char **pp)
        {
        M_ASN1_I2D_vars(a);
 
@@ -82,10 +80,7 @@ unsigned char **pp;
        M_ASN1_I2D_finish();
        }
 
-X509_SIG *d2i_X509_SIG(a,pp,length)
-X509_SIG **a;
-unsigned char **pp;
-long length;
+X509_SIG *d2i_X509_SIG(X509_SIG **a, unsigned char **pp, long length)
        {
        M_ASN1_D2I_vars(a,X509_SIG *,X509_SIG_new);
 
@@ -96,7 +91,7 @@ long length;
        M_ASN1_D2I_Finish(a,X509_SIG_free,ASN1_F_D2I_X509_SIG);
        }
 
-X509_SIG *X509_SIG_new()
+X509_SIG *X509_SIG_new(void)
        {
        X509_SIG *ret=NULL;
        ASN1_CTX c;
@@ -108,8 +103,7 @@ X509_SIG *X509_SIG_new()
        M_ASN1_New_Error(ASN1_F_X509_SIG_NEW);
        }
 
-void X509_SIG_free(a)
-X509_SIG *a;
+void X509_SIG_free(X509_SIG *a)
        {
        if (a == NULL) return;
        X509_ALGOR_free(a->algor);