diff options
Diffstat (limited to 'sys/lib/libkern/ucmpdi2.c')
-rw-r--r-- | sys/lib/libkern/ucmpdi2.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/lib/libkern/ucmpdi2.c b/sys/lib/libkern/ucmpdi2.c index c100b656cb4..00e1b7aad7e 100644 --- a/sys/lib/libkern/ucmpdi2.c +++ b/sys/lib/libkern/ucmpdi2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ucmpdi2.c,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: ucmpdi2.c,v 1.4 2004/08/07 00:38:33 deraadt Exp $ */ /* $NetBSD: ucmpdi2.c,v 1.5 1995/10/07 09:26:53 mycroft Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)ucmpdi2.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$OpenBSD: ucmpdi2.c,v 1.3 2003/06/02 23:28:08 millert Exp $"; +static char rcsid[] = "$OpenBSD: ucmpdi2.c,v 1.4 2004/08/07 00:38:33 deraadt Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -49,8 +49,7 @@ static char rcsid[] = "$OpenBSD: ucmpdi2.c,v 1.3 2003/06/02 23:28:08 millert Exp * Neither a nor b are considered signed. */ int -__ucmpdi2(a, b) - u_quad_t a, b; +__ucmpdi2(u_quad_t a, u_quad_t b) { union uu aa, bb; |