diff options
Diffstat (limited to 'lib/libc/quad/subdi3.c')
-rw-r--r-- | lib/libc/quad/subdi3.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/quad/subdi3.c b/lib/libc/quad/subdi3.c index 7a2ce98344c..f9d17bff79c 100644 --- a/lib/libc/quad/subdi3.c +++ b/lib/libc/quad/subdi3.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: subdi3.c,v 1.4 2004/04/27 17:46:46 otto Exp $"; +static char rcsid[] = "$OpenBSD: subdi3.c,v 1.5 2004/10/17 17:49:21 otto Exp $"; #endif /* LIBC_SCCS and not lint */ #include "quad.h" @@ -42,8 +42,7 @@ static char rcsid[] = "$OpenBSD: subdi3.c,v 1.4 2004/04/27 17:46:46 otto Exp $"; * from a single u_int difference x-y occurs if and only if (x-y) > x. */ quad_t -__subdi3(a, b) - quad_t a, b; +__subdi3(quad_t a, quad_t b) { union uu aa, bb, diff; |