summaryrefslogtreecommitdiff
path: root/mpz/cmpabs_ui.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/cmpabs_ui.c
parent3cda1e9cd20d980654d20732a3e0c59362e921a2 (diff)
downloadgmp-60a9f27e51047aa71f2cd7c63ab2fe9a298ca70b.tar.gz
Remove K&R function headers.
Diffstat (limited to 'mpz/cmpabs_ui.c')
-rw-r--r--mpz/cmpabs_ui.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/mpz/cmpabs_ui.c b/mpz/cmpabs_ui.c
index b4b0fabda..44316d455 100644
--- a/mpz/cmpabs_ui.c
+++ b/mpz/cmpabs_ui.c
@@ -1,7 +1,7 @@
/* mpz_cmpabs_ui.c -- Compare a mpz_t a with an mp_limb_t b. Return positive,
zero, or negative based on if a > b, a == b, or a < b.
-Copyright 1991, 1993, 1994, 1995, 1997, 2000 Free Software Foundation,
+Copyright 1991, 1993, 1994, 1995, 1997, 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_cmpabs_ui (mpz_srcptr u, unsigned long int v_digit)
-#else
-mpz_cmpabs_ui (u, v_digit)
- mpz_srcptr u;
- unsigned long int v_digit;
-#endif
{
mp_size_t usize = u->_mp_size;