summaryrefslogtreecommitdiff
path: root/gmp-h.in
diff options
context:
space:
mode:
authorNiels M?ller <nisse@lysator.liu.se>2015-02-21 19:59:36 +0100
committerNiels M?ller <nisse@lysator.liu.se>2015-02-21 19:59:36 +0100
commit3f90090965ad6bdf44d86ac31420dc621da79e6e (patch)
treeb9aa47b2d5ae072aa848d61455f4326b353f4264 /gmp-h.in
parentf0947958d5f7c1f39adfe752acb42d6843eaff32 (diff)
downloadgmp-3f90090965ad6bdf44d86ac31420dc621da79e6e.tar.gz
Make mpn_divexact_1 public.
Diffstat (limited to 'gmp-h.in')
-rw-r--r--gmp-h.in3
1 files changed, 3 insertions, 0 deletions
diff --git a/gmp-h.in b/gmp-h.in
index 4514fafc9..c6a336197 100644
--- a/gmp-h.in
+++ b/gmp-h.in
@@ -1475,6 +1475,9 @@ __GMP_DECLSPEC mp_limb_t mpn_addmul_1 (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t);
__GMP_DECLSPEC int mpn_cmp (mp_srcptr, mp_srcptr, mp_size_t) __GMP_NOTHROW __GMP_ATTRIBUTE_PURE;
#endif
+#define mpn_divexact_1 __MPN(divexact_1)
+__GMP_DECLSPEC void mpn_divexact_1 (mp_ptr, mp_srcptr, mp_size_t, mp_limb_t);
+
#define mpn_divexact_by3(dst,src,size) \
mpn_divexact_by3c (dst, src, size, __GMP_CAST (mp_limb_t, 0))