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/iset_si.c | |
parent | 3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff) | |
download | gmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz |
Remove K&R function headers.
Diffstat (limited to 'mpz/iset_si.c')
-rw-r--r-- | mpz/iset_si.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/mpz/iset_si.c b/mpz/iset_si.c index 8d503e84e..6d2a73014 100644 --- a/mpz/iset_si.c +++ b/mpz/iset_si.c @@ -1,7 +1,7 @@ /* mpz_init_set_si(val) -- Make a new multiple precision number with value val. -Copyright 1991, 1993, 1994, 1995, 2000 Free Software Foundation, Inc. +Copyright 1991, 1993, 1994, 1995, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -24,13 +24,7 @@ MA 02111-1307, USA. */ #include "gmp-impl.h" void -#if __STDC__ mpz_init_set_si (mpz_ptr x, signed long int val) -#else -mpz_init_set_si (x, val) - mpz_ptr x; - signed long int val; -#endif { x->_mp_alloc = 1; x->_mp_d = (mp_ptr) (*__gmp_allocate_func) (BYTES_PER_MP_LIMB); |