diff options
author | Torbjorn Granlund <tege@gmplib.org> | 2011-11-09 22:32:44 +0100 |
---|---|---|
committer | Torbjorn Granlund <tege@gmplib.org> | 2011-11-09 22:32:44 +0100 |
commit | 61f85141acc5225219d9be7f38738af7258aac9a (patch) | |
tree | d031f1552715ba541d51e7759601ed31e238cb5c /tests/tests.h | |
parent | 2a071bbcca683a848366e451963e451e8d4c0d23 (diff) | |
download | gmp-61f85141acc5225219d9be7f38738af7258aac9a.tar.gz |
Declare just added refmpn_addcnd_n, refmpn_subcnd_n.
Diffstat (limited to 'tests/tests.h')
-rw-r--r-- | tests/tests.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/tests.h b/tests/tests.h index 4086e5c5d..75b546319 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -172,6 +172,11 @@ int refmpf_validate_division __GMP_PROTO ((const char *name, mpf_srcptr got, mpf_srcptr n, mpf_srcptr d)); +mp_limb_t refmpn_addcnd_n __GMP_PROTO ((mp_ptr wp, mp_srcptr xp, mp_srcptr yp, + mp_size_t size, mp_limb_t cnd)); +mp_limb_t refmpn_subcnd_n __GMP_PROTO ((mp_ptr wp, mp_srcptr xp, mp_srcptr yp, + mp_size_t size, mp_limb_t cnd)); + mp_limb_t refmpn_add __GMP_PROTO ((mp_ptr rp, mp_srcptr s1p, mp_size_t s1size, mp_srcptr s2p, mp_size_t s2size)); |