ansi
authorjsg <jsg@openbsd.org>
Sat, 6 Mar 2021 09:20:49 +0000 (09:20 +0000)
committerjsg <jsg@openbsd.org>
Sat, 6 Mar 2021 09:20:49 +0000 (09:20 +0000)
sys/arch/i386/isa/isa_machdep.c
sys/arch/i386/pci/pci_intr_fixup.c
sys/dev/microcode/adw/adwmcode.c
sys/dev/rnd.c
sys/kern/genassym.sh
sys/kern/uipc_mbuf.c
sys/lib/libkern/muldi3.c

index abf5f02..d145455 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: isa_machdep.c,v 1.83 2016/09/22 10:25:34 jsg Exp $    */
+/*     $OpenBSD: isa_machdep.c,v 1.84 2021/03/06 09:20:50 jsg Exp $    */
 /*     $NetBSD: isa_machdep.c,v 1.22 1997/06/12 23:57:32 thorpej Exp $ */
 
 /*-
@@ -334,8 +334,7 @@ intr_calculatemasks(void)
 }
 
 int
-fakeintr(arg)
-       void *arg;
+fakeintr(void *arg)
 {
        return 0;
 }
index a8aa0c7..b14b9b1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pci_intr_fixup.c,v 1.62 2008/12/07 14:33:26 kettenis Exp $    */
+/*     $OpenBSD: pci_intr_fixup.c,v 1.63 2021/03/06 09:20:50 jsg Exp $ */
 /*     $NetBSD: pci_intr_fixup.c,v 1.10 2000/08/10 21:18:27 soda Exp $ */
 
 /*
@@ -242,8 +242,7 @@ const struct pciintr_icu_table {
 const struct pciintr_icu_table *pciintr_icu_lookup(pcireg_t);
 
 const struct pciintr_icu_table *
-pciintr_icu_lookup(id)
-       pcireg_t id;
+pciintr_icu_lookup(pcireg_t id)
 {
        const struct pciintr_icu_table *piit;
 
index cc564f1..b9da7eb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: adwmcode.c,v 1.8 2017/09/08 05:36:52 deraadt Exp $ */
+/*     $OpenBSD: adwmcode.c,v 1.9 2021/03/06 09:20:50 jsg Exp $ */
 /*      $NetBSD: adwmcode.c,v 1.5 2000/05/27 18:24:50 dante Exp $        */
 
 /*
@@ -69,9 +69,7 @@
  * Initialize a set of Carriers and add them to the free list.
  */
 ADW_CARRIER *
-AdwInitCarriers(carr_dmap, carriers)
-       bus_dmamap_t    carr_dmap;
-       ADW_CARRIER     *carriers;
+AdwInitCarriers(bus_dmamap_t carr_dmap, ADW_CARRIER *carriers)
 {
        ADW_CARRIER     *carr;
        u_int32_t       carr_next = 0;
index df566d4..0f804e8 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rnd.c,v 1.221 2020/06/15 14:52:19 deraadt Exp $       */
+/*     $OpenBSD: rnd.c,v 1.222 2021/03/06 09:20:49 jsg Exp $   */
 
 /*
  * Copyright (c) 2011,2020 Theo de Raadt.
@@ -547,7 +547,7 @@ arc4random_buf(void *buf, size_t n)
  * Allocate a new ChaCha20 context for the caller to use.
  */
 struct arc4random_ctx *
-arc4random_ctx_new()
+arc4random_ctx_new(void)
 {
        char keybuf[KEYSZ + IVSZ];
 
index 02f0550..a28dd70 100644 (file)
@@ -1,4 +1,4 @@
-#      $OpenBSD: genassym.sh,v 1.13 2017/08/15 01:53:06 tedu Exp $
+#      $OpenBSD: genassym.sh,v 1.14 2021/03/06 09:20:49 jsg Exp $
 #      $NetBSD: genassym.sh,v 1.9 1998/04/25 19:48:27 matthias Exp $
 
 #
@@ -132,7 +132,7 @@ $0 ~ /^endif/ {
        if (defining == 0) {
                defining = 1;
                printf("void f" FNR "(void);\n");
-               printf("void f" FNR "() {\n");
+               printf("void f" FNR "(void) {\n");
                if (ccode)
                        call[FNR] = "f" FNR;
                defining = 1;
index 5bf8c99..648282d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: uipc_mbuf.c,v 1.278 2021/02/25 02:43:32 dlg Exp $     */
+/*     $OpenBSD: uipc_mbuf.c,v 1.279 2021/03/06 09:20:49 jsg Exp $     */
 /*     $NetBSD: uipc_mbuf.c,v 1.15.4.1 1996/06/13 17:11:44 cgd Exp $   */
 
 /*
@@ -202,7 +202,7 @@ mbinit(void)
 }
 
 void
-mbcpuinit()
+mbcpuinit(void)
 {
        int i;
 
index f854a5c..d9d64e3 100644 (file)
@@ -93,8 +93,7 @@
 static quad_t __lmulq(u_int, u_int);
 
 quad_t
-__muldi3(a, b)
-       quad_t a, b;
+__muldi3(quad_t a, quad_t b)
 {
        union uu u, v, low, prod;
        u_int high, mid, udiff, vdiff;