diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-10-17 17:49:22 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2004-10-17 17:49:22 +0000 |
commit | 86c75be707ab0f7aad0211928afdefc9b2e5ddf5 (patch) | |
tree | 0ca5bbbf4a5cbff3c9e715b41217cbe124f40637 /lib/libc/quad/umoddi3.c | |
parent | 4bd07aa2e8e421555e7e2b4188e51d9a85f9e617 (diff) |
ansify. ok millert@
Diffstat (limited to 'lib/libc/quad/umoddi3.c')
-rw-r--r-- | lib/libc/quad/umoddi3.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/quad/umoddi3.c b/lib/libc/quad/umoddi3.c index f05046a997e..098bb4c340d 100644 --- a/lib/libc/quad/umoddi3.c +++ b/lib/libc/quad/umoddi3.c @@ -32,7 +32,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: umoddi3.c,v 1.3 2003/06/02 20:18:36 millert Exp $"; +static char rcsid[] = "$OpenBSD: umoddi3.c,v 1.4 2004/10/17 17:49:21 otto Exp $"; #endif /* LIBC_SCCS and not lint */ #include "quad.h" @@ -41,8 +41,7 @@ static char rcsid[] = "$OpenBSD: umoddi3.c,v 1.3 2003/06/02 20:18:36 millert Exp * Return remainder after dividing two unsigned quads. */ u_quad_t -__umoddi3(a, b) - u_quad_t a, b; +__umoddi3(u_quad_t a, u_quad_t b) { u_quad_t r; |