summaryrefslogtreecommitdiffstats
path: root/sys/lib/libkern/qdivrem.c
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2005-02-13 03:37:14 +0000
committerjsg <jsg@openbsd.org>2005-02-13 03:37:14 +0000
commit85e3b77d5703c0a54d64055eb48935d19090fc30 (patch)
treeed70d4fac16117ff6272a1f8f67a94bbbf946627 /sys/lib/libkern/qdivrem.c
parentDiscourage use of the source tree as root by eliminating cdpath in (diff)
downloadwireguard-openbsd-85e3b77d5703c0a54d64055eb48935d19090fc30.tar.xz
wireguard-openbsd-85e3b77d5703c0a54d64055eb48935d19090fc30.zip
Remove __P usage in sys that has crept back in.
'Looks fine' millert@, ok miod@
Diffstat (limited to 'sys/lib/libkern/qdivrem.c')
-rw-r--r--sys/lib/libkern/qdivrem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libkern/qdivrem.c b/sys/lib/libkern/qdivrem.c
index 646bc285cbd..25cab635277 100644
--- a/sys/lib/libkern/qdivrem.c
+++ b/sys/lib/libkern/qdivrem.c
@@ -32,7 +32,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: qdivrem.c,v 1.7 2004/11/28 07:23:41 mickey Exp $";
+static char rcsid[] = "$OpenBSD: qdivrem.c,v 1.8 2005/02/13 03:37:14 jsg Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -54,7 +54,7 @@ typedef unsigned short digit;
typedef u_int 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.