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/cmp_si.c | |
parent | 3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff) | |
download | gmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz |
Remove K&R function headers.
Diffstat (limited to 'mpz/cmp_si.c')
-rw-r--r-- | mpz/cmp_si.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/mpz/cmp_si.c b/mpz/cmp_si.c index 9cedd3822..8d1728bc0 100644 --- a/mpz/cmp_si.c +++ b/mpz/cmp_si.c @@ -1,7 +1,7 @@ /* mpz_cmp_si(u,v) -- Compare an integer U with a single-word int V. Return positive, zero, or negative based on if U > V, U == V, or U < V. -Copyright 1991, 1993, 1994, 1995, 1996, 2000 Free Software Foundation, +Copyright 1991, 1993, 1994, 1995, 1996, 2000, 2001 Free Software Foundation, Inc. This file is part of the GNU MP Library. @@ -25,13 +25,7 @@ MA 02111-1307, USA. */ #include "gmp-impl.h" int -#if __STDC__ _mpz_cmp_si (mpz_srcptr u, signed long int v_digit) -#else -_mpz_cmp_si (u, v_digit) - mpz_srcptr u; - signed long int v_digit; -#endif { mp_size_t usize = u->_mp_size; mp_size_t vsize; |