summaryrefslogtreecommitdiff
path: root/gmp-impl.h
diff options
context:
space:
mode:
authorMarco Bodrato <bodrato@mail.dm.unipi.it>2014-09-01 07:52:30 +0200
committerMarco Bodrato <bodrato@mail.dm.unipi.it>2014-09-01 07:52:30 +0200
commitf38faf4ee3a642ffa6f463c6c686027867261d9d (patch)
tree1178870ba2cae1d8c754389d886f813bed2d309a /gmp-impl.h
parent65c41bcb0ccb44dfccb65dc9a67c17a3513b99fe (diff)
downloadgmp-f38faf4ee3a642ffa6f463c6c686027867261d9d.tar.gz
mpn/generic/remove.c: Use mp_srcptr for source operands.
Diffstat (limited to 'gmp-impl.h')
-rw-r--r--gmp-impl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmp-impl.h b/gmp-impl.h
index 4a8286ec3..6cc47677c 100644
--- a/gmp-impl.h
+++ b/gmp-impl.h
@@ -2560,7 +2560,7 @@ __GMP_DECLSPEC void __gmp_assert_fail (const char *, int, const char *) ATTRIBUT
__GMP_DECLSPEC mp_limb_t mpn_trialdiv (mp_srcptr, mp_size_t, mp_size_t, int *);
#define mpn_remove __MPN(remove)
-__GMP_DECLSPEC mp_bitcnt_t mpn_remove (mp_ptr, mp_size_t *, mp_ptr, mp_size_t, mp_ptr, mp_size_t, mp_bitcnt_t);
+__GMP_DECLSPEC mp_bitcnt_t mpn_remove (mp_ptr, mp_size_t *, mp_srcptr, mp_size_t, mp_srcptr, mp_size_t, mp_bitcnt_t);
/* ADDC_LIMB sets w=x+y and cout to 0 or 1 for a carry from that addition. */