diff options
author | tege <tege@gmplib.org> | 2001-01-02 09:12:08 +0100 |
---|---|---|
committer | tege <tege@gmplib.org> | 2001-01-02 09:12:08 +0100 |
commit | 60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b (patch) | |
tree | 71273e7a23cbfab82e334655eede8b0a7abc4692 /mpz/size.c | |
parent | 3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff) | |
download | gmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz |
Remove K&R function headers.
Diffstat (limited to 'mpz/size.c')
-rw-r--r-- | mpz/size.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/mpz/size.c b/mpz/size.c index aa2fbbf7c..0d9e12713 100644 --- a/mpz/size.c +++ b/mpz/size.c @@ -1,7 +1,7 @@ /* mpz_size(x) -- return the number of lims currently used by the value of integer X. -Copyright 1991, 1993, 1994, 1995 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1995, 2001 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -24,12 +24,7 @@ MA 02111-1307, USA. */ #include "gmp-impl.h" size_t -#if __STDC__ mpz_size (mpz_srcptr x) -#else -mpz_size (x) - mpz_srcptr x; -#endif { return ABS (x->_mp_size); } |