diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-27 00:32:28 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-06-27 00:32:28 +0000 |
commit | 2210ff7cfc3cc7c6cafe403b23275766b401a5be (patch) | |
tree | ff816869a9334131883d0d58ecc01d474e249037 /sys/lib | |
parent | d87f4f85b64fe69afeab5dc18e01b9b42e6b1fc6 (diff) |
fix for non-ansi compilers
Diffstat (limited to 'sys/lib')
-rw-r--r-- | sys/lib/libkern/muldi3.c | 10 | ||||
-rw-r--r-- | sys/lib/libkern/qdivrem.c | 9 |
2 files changed, 12 insertions, 7 deletions
diff --git a/sys/lib/libkern/muldi3.c b/sys/lib/libkern/muldi3.c index b4b90b6652d..b565adda04b 100644 --- a/sys/lib/libkern/muldi3.c +++ b/sys/lib/libkern/muldi3.c @@ -1,4 +1,4 @@ -/* $OpenBSD: muldi3.c,v 1.2 1997/11/07 15:56:46 niklas Exp $ */ +/* $OpenBSD: muldi3.c,v 1.3 1998/06/27 00:32:26 mickey 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.2 1997/11/07 15:56:46 niklas Exp $"; +static char rcsid[] = "$OpenBSD: muldi3.c,v 1.3 1998/06/27 00:32:26 mickey Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -105,7 +105,7 @@ static char rcsid[] = "$OpenBSD: muldi3.c,v 1.2 1997/11/07 15:56:46 niklas 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(u_long, u_long); +static quad_t __lmulq __P((u_long, u_long)); quad_t __muldi3(a, b) @@ -193,7 +193,9 @@ __muldi3(a, b) * splits into high and low longs as HHALF(l) and LHUP(l) respectively. */ static quad_t -__lmulq(u_long u, u_long v) +__lmulq(u, v) + u_long u; + u_long v; { u_long u1, u0, v1, v0, udiff, vdiff, high, mid, low; u_long prodh, prodl, was; diff --git a/sys/lib/libkern/qdivrem.c b/sys/lib/libkern/qdivrem.c index 140aee5cff8..cee94bc14c4 100644 --- a/sys/lib/libkern/qdivrem.c +++ b/sys/lib/libkern/qdivrem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qdivrem.c,v 1.2 1997/11/07 15:56:48 niklas Exp $ */ +/* $OpenBSD: qdivrem.c,v 1.3 1998/06/27 00:32:27 mickey Exp $ */ /* $NetBSD: qdivrem.c,v 1.5 1995/10/07 09:26:40 mycroft Exp $ */ /*- @@ -42,7 +42,7 @@ #ifdef notdef static char sccsid[] = "@(#)qdivrem.c 8.1 (Berkeley) 6/4/93"; #endif -static char rcsid[] = "$OpenBSD: qdivrem.c,v 1.2 1997/11/07 15:56:48 niklas Exp $"; +static char rcsid[] = "$OpenBSD: qdivrem.c,v 1.3 1998/06/27 00:32:27 mickey Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -277,7 +277,10 @@ __qdivrem(uq, vq, arq) * We may assume len >= 0. NOTE THAT THIS WRITES len+1 DIGITS. */ static void -shl(register digit *p, register int len, register int sh) +shl(p, len, sh) + register digit *p; + register int len; + register int sh; { register int i; |