ansi
authorjsg <jsg@openbsd.org>
Sun, 16 May 2021 04:51:00 +0000 (04:51 +0000)
committerjsg <jsg@openbsd.org>
Sun, 16 May 2021 04:51:00 +0000 (04:51 +0000)
sys/lib/libkern/bcmp.c

index 453f046..6e7585e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bcmp.c,v 1.12 2021/05/16 04:45:58 jsg Exp $   */
+/*     $OpenBSD: bcmp.c,v 1.13 2021/05/16 04:51:00 jsg Exp $   */
 
 /*
  * Copyright (c) 1987 Regents of the University of California.
@@ -37,9 +37,7 @@
  * bcmp -- vax cmpc3 instruction
  */
 int
-bcmp(b1, b2, length)
-       const void *b1, *b2;
-       size_t length;
+bcmp(const void *b1, const void *b2, size_t length)
 {
        char *p1, *p2;