summaryrefslogtreecommitdiff
path: root/mpz/popcount.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpz/popcount.c')
-rw-r--r--mpz/popcount.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/mpz/popcount.c b/mpz/popcount.c
index bb1ff6f42..04a213d3a 100644
--- a/mpz/popcount.c
+++ b/mpz/popcount.c
@@ -1,7 +1,7 @@
/* mpz_popcount(mpz_ptr op) -- Population count of OP. If the operand is
negative, return ~0 (a novel representation of infinity).
-Copyright 1994, 1996 Free Software Foundation, Inc.
+Copyright 1994, 1996, 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"
unsigned long int
-#if __STDC__
mpz_popcount (mpz_srcptr u)
-#else
-mpz_popcount (u)
- mpz_srcptr u;
-#endif
{
mp_size_t usize;