summaryrefslogtreecommitdiff
path: root/mpz/getlimbn.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/getlimbn.c
parent3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff)
downloadgmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz
Remove K&R function headers.
Diffstat (limited to 'mpz/getlimbn.c')
-rw-r--r--mpz/getlimbn.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/mpz/getlimbn.c b/mpz/getlimbn.c
index 0c847e6b2..74166c233 100644
--- a/mpz/getlimbn.c
+++ b/mpz/getlimbn.c
@@ -1,6 +1,6 @@
/* mpz_getlimbn(integer,n) -- Return the N:th limb from INTEGER.
-Copyright 1993, 1994, 1995, 1996 Free Software Foundation, Inc.
+Copyright 1993, 1994, 1995, 1996, 2001 Free Software Foundation, Inc.
This file is part of the GNU MP Library.
@@ -23,13 +23,7 @@ MA 02111-1307, USA. */
#include "gmp-impl.h"
mp_limb_t
-#if __STDC__
mpz_getlimbn (mpz_srcptr integer, mp_size_t n)
-#else
-mpz_getlimbn (integer, n)
- mpz_srcptr integer;
- mp_size_t n;
-#endif
{
if (ABS (integer->_mp_size) <= n || n < 0)
return 0;