summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/muldi3.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
committermillert <millert@openbsd.org>2002-03-14 01:26:25 +0000
commitc4071fd13883b3f74b90a411bbb39755a785aeaa (patch)
tree241e7c760222fac909b512d36156c6db1b610256 /sys/lib/libkern/muldi3.c
parentcompare pointers with NULL not 0 (diff)
downloadwireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz
wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip
First round of __P removal in sys
Diffstat (limited to 'sys/lib/libkern/muldi3.c')
-rw-r--r--sys/lib/libkern/muldi3.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/muldi3.c b/sys/lib/libkern/muldi3.c
index b565adda04b..ea38cf75248 100644
--- a/sys/lib/libkern/muldi3.c
+++ b/sys/lib/libkern/muldi3.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: muldi3.c,v 1.3 1998/06/27 00:32:26 mickey Exp $ */
+/* $OpenBSD: muldi3.c,v 1.4 2002/03/14 01:27:07 millert Exp $ */
/* $NetBSD: muldi3.c,v 1.5 1995/10/07 09:26:33 mycroft Exp $ */
/*-
@@ -42,7 +42,7 @@
#if 0
static char sccsid[] = "@(#)muldi3.c 8.1 (Berkeley) 6/4/93";
#else
-static char rcsid[] = "$OpenBSD: muldi3.c,v 1.3 1998/06/27 00:32:26 mickey Exp $";
+static char rcsid[] = "$OpenBSD: muldi3.c,v 1.4 2002/03/14 01:27:07 millert Exp $";
#endif
#endif /* LIBC_SCCS and not lint */
@@ -105,7 +105,7 @@ static char rcsid[] = "$OpenBSD: muldi3.c,v 1.3 1998/06/27 00:32:26 mickey Exp $
* of 2^n in either one will also vanish. Only `low' need be computed
* mod 2^2n, and only because of the final term above.
*/
-static quad_t __lmulq __P((u_long, u_long));
+static quad_t __lmulq(u_long, u_long);
quad_t
__muldi3(a, b)