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/notdi2.c | |
parent | f8b1d50fcd985a3171e1d491c63c553aff62c2a7 (diff) |
ansi and some missing protos
Diffstat (limited to 'sys/lib/libkern/notdi2.c')
-rw-r--r-- | sys/lib/libkern/notdi2.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/lib/libkern/notdi2.c b/sys/lib/libkern/notdi2.c index 248fc1ca6ab..8c2df01a8a0 100644 --- a/sys/lib/libkern/notdi2.c +++ b/sys/lib/libkern/notdi2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: notdi2.c,v 1.3 2003/06/02 23:28:08 millert Exp $ */ +/* $OpenBSD: notdi2.c,v 1.4 2004/08/07 00:38:32 deraadt Exp $ */ /* $NetBSD: notdi2.c,v 1.5 1995/10/07 09:26:36 mycroft Exp $ */ /*- @@ -38,7 +38,7 @@ #if 0 static char sccsid[] = "@(#)notdi2.c 8.1 (Berkeley) 6/4/93"; #else -static char rcsid[] = "$OpenBSD: notdi2.c,v 1.3 2003/06/02 23:28:08 millert Exp $"; +static char rcsid[] = "$OpenBSD: notdi2.c,v 1.4 2004/08/07 00:38:32 deraadt Exp $"; #endif #endif /* LIBC_SCCS and not lint */ @@ -49,8 +49,7 @@ static char rcsid[] = "$OpenBSD: notdi2.c,v 1.3 2003/06/02 23:28:08 millert Exp * than `not'. */ quad_t -__one_cmpldi2(a) - quad_t a; +__one_cmpldi2(quad_t a) { union uu aa; |