From 2210ff7cfc3cc7c6cafe403b23275766b401a5be Mon Sep 17 00:00:00 2001 From: Michael Shalayeff Date: Sat, 27 Jun 1998 00:32:28 +0000 Subject: fix for non-ansi compilers --- sys/lib/libkern/qdivrem.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'sys/lib/libkern/qdivrem.c') 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; -- cgit v1.2.3