diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-06-07 15:28:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-06-07 15:28:22 +0000 |
commit | 148ef109c45343f775f993163bb690e865217af6 (patch) | |
tree | b37f10b8f063f2ffc451704d86aa185005578650 /lib/libc/quad | |
parent | 615c140d340038bafcb9033ce4d1e19d57ac7da4 (diff) |
remove last few uses of __P
Diffstat (limited to 'lib/libc/quad')
-rw-r--r-- | lib/libc/quad/qdivrem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/quad/qdivrem.c b/lib/libc/quad/qdivrem.c index f8d0c93adbd..b437e861905 100644 --- a/lib/libc/quad/qdivrem.c +++ b/lib/libc/quad/qdivrem.c @@ -1,4 +1,4 @@ -/* $OpenBSD: qdivrem.c,v 1.7 2005/08/08 08:05:35 espie Exp $ */ +/* $OpenBSD: qdivrem.c,v 1.8 2014/06/07 15:28:21 deraadt Exp $ */ /*- * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. @@ -51,7 +51,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. |