use ansi function decls
authorjsg <jsg@openbsd.org>
Wed, 6 Sep 2023 11:03:30 +0000 (11:03 +0000)
committerjsg <jsg@openbsd.org>
Wed, 6 Sep 2023 11:03:30 +0000 (11:03 +0000)
usr.sbin/mopd/mopchk/mopchk.c

index f1bccdb..f740a6a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mopchk.c,v 1.20 2023/03/08 04:43:14 guenther Exp $    */
+/*     $OpenBSD: mopchk.c,v 1.21 2023/09/06 11:03:30 jsg Exp $ */
 
 /*
  * Copyright (c) 1995-96 Mats O Jansson.  All rights reserved.
@@ -52,9 +52,7 @@ extern char *__progname;
 extern char version[];
 
 int
-main(argc, argv)
-       int     argc;
-       char  **argv;
+main(int argc, char **argv)
 {
        struct dllist dl;
        int     op, i;
@@ -142,7 +140,7 @@ main(argc, argv)
 }
 
 void
-Usage()
+Usage(void)
 {
        fprintf(stderr, "usage: %s [-av] [file ...]\n", __progname);
        exit(1);
@@ -152,9 +150,7 @@ Usage()
  * Process incoming packages, NOT. 
  */
 void
-mopProcess(ii, pkt)
-       struct if_info *ii;
-       u_char *pkt;
+mopProcess(struct if_info *ii, u_char *pkt)
 {
 }