summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/qdivrem.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/qdivrem.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/qdivrem.c')
-rw-r--r--sys/lib/libkern/qdivrem.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/lib/libkern/qdivrem.c b/sys/lib/libkern/qdivrem.c
index cee94bc14c4..07cdd4b8f7a 100644
--- a/sys/lib/libkern/qdivrem.c
+++ b/sys/lib/libkern/qdivrem.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: qdivrem.c,v 1.3 1998/06/27 00:32:27 mickey Exp $ */
+/* $OpenBSD: qdivrem.c,v 1.4 2002/03/14 01:27:07 millert 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.3 1998/06/27 00:32:27 mickey Exp $";
+static char rcsid[] = "$OpenBSD: qdivrem.c,v 1.4 2002/03/14 01:27:07 millert Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -64,7 +64,7 @@ typedef unsigned short digit;
typedef u_long digit;
#endif
-static void shl __P((digit *p, int len, int sh));
+static void shl(digit *p, int len, int sh);
/*
* __qdivrem(u, v, rem) returns u/v and, optionally, sets *rem to u%v.