Change functions to ANSI C.
[openssl.git] / apps / nseq.c
index e87c6c77a7dfffa6b68dd725b2b789ce26c33f64..3c70e4d2bedcdf0c46b9d3ad47a1e9507eb78d50 100644 (file)
@@ -70,9 +70,7 @@ static int dump_cert_text(BIO *out, X509 *x);
 static int dump_cert_text();
 #endif
 
-int MAIN(argc, argv)
-int argc;
-char **argv;
+int MAIN(int argc, char **argv)
 {
        char **args, *infile = NULL, *outfile = NULL;
        BIO *in = NULL, *out = NULL;
@@ -163,9 +161,7 @@ end:
        EXIT(ret);
 }
 
-static int dump_cert_text(out, x)
-BIO *out;
-X509 *x;
+static int dump_cert_text(BIO *out, X509 *x)
 {
         char buf[256];
         X509_NAME_oneline(X509_get_subject_name(x),buf,256);