Change functions to ANSI C.
[openssl.git] / crypto / asn1 / a_verify.c
index dc5db9288b187689e8474a26f070f6022a85e2f1..fc2711058bd57fb1c386341e5a4e3075d1cff322 100644 (file)
 #include "buffer.h"
 #include "evp.h"
 
-int ASN1_verify(i2d,a,signature,data,pkey)
-int (*i2d)();
-X509_ALGOR *a;
-ASN1_BIT_STRING *signature;
-char *data;
-EVP_PKEY *pkey;
+int ASN1_verify(int (*i2d)(), X509_ALGOR *a, ASN1_BIT_STRING *signature,
+            char *data, EVP_PKEY *pkey)
        {
        EVP_MD_CTX ctx;
        const EVP_MD *type;