summaryrefslogtreecommitdiff
path: root/mpz/root.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/root.c
parent3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff)
downloadgmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz
Remove K&R function headers.
Diffstat (limited to 'mpz/root.c')
-rw-r--r--mpz/root.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/mpz/root.c b/mpz/root.c
index 99c87292a..24199e6a7 100644
--- a/mpz/root.c
+++ b/mpz/root.c
@@ -1,7 +1,7 @@
/* mpz_root(root, u, nth) -- Set ROOT to floor(U^(1/nth)).
Return an indication if the result is exact.
-Copyright 1999, 2000 Free Software Foundation, Inc.
+Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -32,14 +32,7 @@ MA 02111-1307, USA. */
#include "longlong.h"
int
-#if __STDC__
mpz_root (mpz_ptr r, mpz_srcptr c, unsigned long int nth)
-#else
-mpz_root (r, c, nth)
- mpz_ptr r;
- mpz_srcptr c;
- unsigned long int nth;
-#endif
{
mpz_t x, t0, t1, t2;
__mpz_struct ccs, *cc = &ccs;