diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-07 00:38:34 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-08-07 00:38:34 +0000 |
commit | 6199f15e3e0651e8399ad97e919a96d69d128ee2 (patch) | |
tree | cde8dbb44682b9bafafa3ec82a63352162d5cf59 /sys/lib/libkern/xordi3.c | |
parent | f8b1d50fcd985a3171e1d491c63c553aff62c2a7 (diff) |
ansi and some missing protos
Diffstat (limited to 'sys/lib/libkern/xordi3.c')
-rw-r--r-- | sys/lib/libkern/xordi3.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/lib/libkern/xordi3.c b/sys/lib/libkern/xordi3.c index ec33f2df2c4..cc0f1b11e09 100644 --- a/sys/lib/libkern/xordi3.c +++ b/sys/lib/libkern/xordi3.c @@ -1,4 +1,4 @@ -/* $OpenBSD: xordi3.c,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: xordi3.c,v 1.4 2004/08/07 00:38:33 deraadt Exp $ */ /* $NetBSD: xordi3.c,v 1.5 1995/10/07 09:26:56 mycroft Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)xordi3.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$OpenBSD: xordi3.c,v 1.3 2003/06/02 23:28:08 millert Exp $"; +static char rcsid[] = "$OpenBSD: xordi3.c,v 1.4 2004/08/07 00:38:33 deraadt Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -48,8 +48,7 @@ static char rcsid[] = "$OpenBSD: xordi3.c,v 1.3 2003/06/02 23:28:08 millert Exp * Return a ^ b, in quad. */ quad_t -__xordi3(a, b) - quad_t a, b; +__xordi3(quad_t a, quad_t b) { union uu aa, bb; |