summaryrefslogtreecommitdiff
path: root/mpz/cdiv_r_ui.c
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2001-01-02 09:12:08 +0100
committertege <tege@gmplib.org>2001-01-02 09:12:08 +0100
commit60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b (patch)
tree71273e7a23cbfab82e334655eede8b0a7abc4692 /mpz/cdiv_r_ui.c
parent3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff)
downloadgmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz
Remove K&R function headers.
Diffstat (limited to 'mpz/cdiv_r_ui.c')
-rw-r--r--mpz/cdiv_r_ui.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/mpz/cdiv_r_ui.c b/mpz/cdiv_r_ui.c
index 53a79be58..9b6ee14c3 100644
--- a/mpz/cdiv_r_ui.c
+++ b/mpz/cdiv_r_ui.c
@@ -3,7 +3,7 @@
always fit into the return type, the negative of the true remainder is
returned.
-Copyright 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright 1994, 1995, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -26,14 +26,7 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
unsigned long int
-#if __STDC__
mpz_cdiv_r_ui (mpz_ptr rem, mpz_srcptr dividend, unsigned long int divisor)
-#else
-mpz_cdiv_r_ui (rem, dividend, divisor)
- mpz_ptr rem;
- mpz_srcptr dividend;
- unsigned long int divisor;
-#endif
{
mp_size_t dividend_size;
mp_size_t size;