summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/qdiv.c
diff options
context:
space:
mode:
authorpat <pat@openbsd.org>2005-03-30 18:51:49 +0000
committerpat <pat@openbsd.org>2005-03-30 18:51:49 +0000
commitd8bc04e435448c902a8c004581e7486635bbff02 (patch)
treeeb84adde243775bdc6375d84958a66b4eb36c02c /lib/libc/stdlib/qdiv.c
parentMove sasyncd(8), for IPsec SA synchronization, in-tree. Work in progress. (diff)
downloadwireguard-openbsd-d8bc04e435448c902a8c004581e7486635bbff02.tar.xz
wireguard-openbsd-d8bc04e435448c902a8c004581e7486635bbff02.zip
ansi + de-register
ok otto deraadt
Diffstat (limited to 'lib/libc/stdlib/qdiv.c')
-rw-r--r--lib/libc/stdlib/qdiv.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdlib/qdiv.c b/lib/libc/stdlib/qdiv.c
index 6688ccb712d..8147ee89a6c 100644
--- a/lib/libc/stdlib/qdiv.c
+++ b/lib/libc/stdlib/qdiv.c
@@ -31,14 +31,13 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: qdiv.c,v 1.3 2003/06/02 20:18:38 millert Exp $";
+static char *rcsid = "$OpenBSD: qdiv.c,v 1.4 2005/03/30 18:51:49 pat Exp $";
#endif /* LIBC_SCCS and not lint */
#include <stdlib.h> /* qdiv_t */
qdiv_t
-qdiv(num, denom)
- quad_t num, denom;
+qdiv(quad_t num, quad_t denom)
{
qdiv_t r;